http://bugs.winehq.com/show_bug.cgi?id=400
------- Additional Comments From mcbridematt(a)hotmail.com 2002-08-10 20:15 -------
When Using DGA, Wine takes over the screen, but game does not show. Reboot is
required to get out.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=400>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=353
mcbridematt(a)hotmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |minor
Status|CLOSED |UNCONFIRMED
Priority|P1 |P4
Target Milestone|--- |1.0.0
------- Additional Comments From mcbridematt(a)hotmail.com …
[View More]2002-08-10 20:13 -------
Thing to do:
If you don't want to use transgaming's dll's, perhaps attempt to try using
Native DX dll's with Wine's fake's
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=353>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
[View Less]
http://bugs.winehq.com/show_bug.cgi?id=358
mcbridematt(a)hotmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|mcbridematt(a)hotmail.com |wine-bugs(a)winehq.com
------- Additional Comments From mcbridematt(a)hotmail.com 2002-08-10 20:10 -------
When trying to load a scenario, it goes in to the scenario for a second then
goes out outputting nothing.
Using Wine CVS …
[View More]with 'Fake Windows'
Full version of roller coaster tycoon
You need full version of RollerCoasterTycoon to load saved games
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=358>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
[View Less]
http://bugs.winehq.com/show_bug.cgi?id=922
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-08-10 16:36 -------
There is not much I can do on this end without some more files. It looks like
they are in setupdir\0409\ from what I can tell. there is one setup.bmp and
probably whatever else is in that directory. The only other file I can see setup
looking for at this point is IKernel.ex_ which is probably in the same directory.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE …
[View More]POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=922>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
[View Less]
http://bugs.winehq.com/show_bug.cgi?id=924
andi(a)rhlx01.fht-esslingen.de changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |juergen.schmied(a)debitel.net
Status|NEW |ASSIGNED
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-08-10 13:36 -------
Assigning to the expert...
DO NOT REPLY TO THIS …
[View More]EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=924>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
[View Less]
http://bugs.winehq.com/show_bug.cgi?id=959
Summary: ChooseFontA dialog never displays the script selection
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: winebugzilla(a)sun.consumer.org.il
The "ChooseFont" dialog, when not using Unicode, has an option to select which
…
[View More]script will be used when the font supports more than one. This option is not
implemented in WINE at the moment.
In principle, it shouldn't be too dificult to implement. All that needs to be
done is adding a combo box to the dialog layout, and filling it out with the
result of "GetFontUnicodeRanges". There is only really need to check for those
ranges that correspond to the defined charsets (SYMBOL_CHARSET,
SHIFTJIS_CHARSET, etc.).
There is, however, some need to tweak the resources. For each of these charset,
you probably need:
1. The demo text to use (locale independant).
2. The display name to use (i.e. - SHIFTJIS_CHARSET is "Japanese" if the current
locale is English, "RUSSIAN_CHARSET" is "Russian" if the current locale is
English, etc.).
It is my experience that, under Windows 2000, ChooseFontW puts this combo box
in, but disables it (ugly).
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=959>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
[View Less]
http://bugs.winehq.com/show_bug.cgi?id=924
------- Additional Comments From dclark(a)akamail.com 2002-08-10 12:42 -------
This problem is being caused by this short bit of code in the function
SHGetFileInfoA(). This function starts by setting pidl to null. Then WinZip
calls this function with the flags 0x4115, which includes
SHGFI_USEFILEATTRIBUTES but not SHGFI_PIDL. With that combination of flags, this
short bit of code will always fail (return FALSE).
if (flags & SHGFI_PIDL) {
…
[View More] pidl = ILClone((LPCITEMIDLIST)path);
} else if (!(flags & SHGFI_USEFILEATTRIBUTES)) {
hr = SHILCreateFromPathA(path, &pidl, &dwAttributes);
}
/* get the parent shellfolder */
if (pidl) {
hr = SHBindToParent( pidl, &IID_IShellFolder, (LPVOID*)&psfParent, &pidlLast);
ILFree(pidl);
} else {
ERR("pidl is null!\n");
return FALSE;
}
Changing that last "else" to:
} else if (!(flags & SHGFI_USEFILEATTRIBUTES)) {
fixes this.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=924>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
[View Less]
http://bugs.winehq.com/show_bug.cgi?id=958
roz(a)one.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://w3.one.net/~roz/linge
| |nfelter_vs_dsm.mpeg
------- Additional Comments From roz(a)one.net 2002-08-10 11:45 -------
Too big to attach (17MB). You can download it at the URL if you want to see
…
[View More]what I mean. The file plays fine in Xmovie.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=958>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
[View Less]
http://bugs.winehq.com/show_bug.cgi?id=934
------- Additional Comments From uh_ja(a)gmx.net 2002-08-10 11:12 -------
I have two programs that run at 100% percent cpu usage now:
Warcraft 3's install.exe, and blizzard provided patches.
The quick fix for these would be to use a native win95/98/me msvcrt.dll.
My guess from what the traces look like, they get stuck in an infinite loop
because of code in wine's msvcrt somewhere.
P.S. We should have people report the programs based off of …
[View More]the latest CVS.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=934>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
[View Less]
http://bugs.winehq.com/show_bug.cgi?id=958
Summary: Windows Media Player 6.4 audio problems (setting format
to 8)
Product: Wine
Version: 20020710
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-multimedia
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: roz(a)one.net
When running certain MPEG videos in Media Player 6.4.…
[View More]07.1112 (using Windows '95
DLLs), I get the following message, along with the sound cutting in and out as
the message repeats:
err:wave:OSS_OpenDevice Can't set format to 8 (16)
fixme:dsound:IDirectSoundImpl_SetCooperativeLevel (0x4044d708,00010023,2):stub
fixme:dsound:IDirectSoundImpl_SetCooperativeLevel (0x4044d708,00010023,2):stub
It seems Win95 is trying to set the audio format to 8-bit, but Wine's emulation
is force-set at 16-bit. Is that what's happening? I will attach one MPEG that
gives me this error.
Let me know if you need any specific traces.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=958>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
[View Less]