http://bugs.winehq.org/show_bug.cgi?id=3653
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine-bugs(a)winehq.org
AssignedTo|wine-bugs(a)winehq.org |oliver_stieber(a)yahoo.co.uk
Component|wine-directx |wine-directx-d3d
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3309
------- Additional Comments From danny.milo(a)gmx.net 2005-24-10 18:21 -------
you are right, it compiles now..
However, the product keys are not accepted just like before.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=2885
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2005-24-10 17:21 -------
Can you try setting WINEDEBUG=+module,+file env-variable, rerunning the game and
posting Wines output? Two channels may give superfluous data, but I am not sure
about this. Maybe you should start with WINEDEBUG=+loaddll only. Keeps us
informed. :)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3641
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2005-24-10 17:17 -------
Created an attachment (id=1232)
--> (http://bugs.winehq.org/attachment.cgi?id=1232&action=view)
WINEDEBUG=+module,+file
Thanks. BTW, adding file descriptor switch "2>&1" before a pipe sign (or after
normal redirect instruction) works for me well. Combined redirection
instruction should work also ">&" or "&>" in Bash shell. Maybe you're using
different one.
This part of output seems most interesting to me:
| trace:module:MODULE_GetLoadOrderW got hardcoded default "b,n" for
L"C:\\...\\Sound.dll"
| trace:module:load_dll Trying built-in L"C:\\...\\Sound.dll"
| warn:module:load_dll Failed to load module L"Sound.dll"; status=c000007b
Oops. It seems the error code was already in your previous report. So my
suggestion was inappropriate. Greping:
$ grep -iIr c000007b include/
| include/ntstatus.h:#define STATUS_INVALID_IMAGE_FORMAT 0xC000007B
Reading code in dlls/ntdll/loader.c gives that Wine tries to load builtin which
already should be loaded:
/* The constructor wasn't called, this means the .so is already
* loaded under a different name. We can't support multiple names
* for the same module, so return an error. */
Going next:
$ locate -i sound.dll | grep wine
| /mnt/antras/usr/src/wine-cvs/wine/dlls/dsound/dsound.dll.dbg.c
| /mnt/antras/usr/src/wine-cvs/wine/dlls/dsound/dsound.dll.so
| /mnt/antras/usr/src/wine-cvs/wine/dlls/sound.dll.so
| /mnt/antras/usr/src/wine-cvs/wine/dlls/dsound.dll.so
$ ll /mnt/antras/usr/src/wine-cvs/wine/dlls/sound.dll.so
| lrwxrwxrwx 1 s2 s2 12 Oct 7 00:59
/mnt/antras/usr/src/wine-cvs/wine/dlls/sound.dll.so -> winmm.dll.so
Yaiy. :)
Wine presents Sound.DLL as an alias name (synonym) for WinMM.DLL. IOW, that is
naming conflict between system (builtin) "wine/dlls/sound.dll.so" and
and yours (native) "/home/rich/.wine/dosdevices/c:/Program Files/Irrational
Games/Freedom Force/Sound.dll".
I don't understand, whether this is a bug, but if yes then it's likely one of
category WONTFIX or LATER.
I'd try setting WINEDLLOVERRIDES='Sound=n' env-var or as a last measure
removimg this symbolic link 'sound.dll.so -> winmm.dll.so' from your
system/box.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3653
Summary: SplinterCell Demo:fixme:d3d_surface: Unsupported Format
22 in locking func
Product: Wine
Version: CVS
Platform: Other
URL: http://downloads.gamezone.com/demos/d7133.htm
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
Ran with native msvcrt (see bug 3652) it spits out a million of these lines, and
the screen is black:
fixme:d3d_surface:IDirect3DSurface8Impl_UnlockRect Unsupported Format 22 in
locking func
I added these lines just before the fixme in dlls/d3d8/surface.c
case 22:// just copied this from case D3DFMT_A8R8G8B8 above
{
glPixelStorei(GL_PACK_SWAP_BYTES, TRUE);
vcheckGLcall("glPixelStorei");
glDrawPixels(This->lockedRect.right - This->lockedRect.left,
(This->lockedRect.bottom - This->lockedRect.top)-1,
GL_BGRA, GL_UNSIGNED_BYTE, This->allocatedMemory);
vcheckGLcall("glDrawPixels");
glPixelStorei(GL_PACK_SWAP_BYTES, prev_store);
vcheckGLcall("glPixelStorei");
}
break;
Now i can actually see the intro. I know this is just an awfull an incorrect
hack, maybe someone who understands the code can fix this bug. The bug that
really prevents the demo from working is a sound issue, which i'll file
separately later
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3403
------- Additional Comments From jonathan(a)ernstfamily.ch 2005-24-10 16:42 -------
Still the same badalloc issue (putting it in a virtual desktop doesn't help)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3272
------- Additional Comments From jonathan(a)ernstfamily.ch 2005-24-10 16:40 -------
Still the case using Wine-CVS and latest Winzip Beta.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3081
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
URL|http://appdb.winehq.org/appv|http://www.kaleidagraph.com/
|iew.php?appid=996 |demowinint.htm
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Keywords| |download
Version|20050524 |CVS
------- Additional Comments From jonathan(a)ernstfamily.ch 2005-24-10 16:36 -------
AppDB: http://appdb.winehq.org/appview.php?appId=996
Download: http://www.kaleidagraph.com/demowinint.htm
Confirming using Wine-CVS.
Some parts of the dialogs are transparent
wine /home/jernst/.wine/drive_c/Program\ Files/KaleidaGraph/KGraph.exe
fixme:win:WINNLSEnableIME hUnknown1 0x10024 bUnknown2 1: stub!
fixme:font:WineEngRemoveFontResourceEx :stub
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3540
Bug 3540 depends on bug 3241, which changed state.
Bug 3241 Summary: Regression: installer fails to create installation dir:the folder name is not valid
http://bugs.winehq.org/show_bug.cgi?id=3241
What |Old Value |New Value
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3486
Bug 3486 depends on bug 3241, which changed state.
Bug 3241 Summary: Regression: installer fails to create installation dir:the folder name is not valid
http://bugs.winehq.org/show_bug.cgi?id=3241
What |Old Value |New Value
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3517
Bug 3517 depends on bug 3241, which changed state.
Bug 3241 Summary: Regression: installer fails to create installation dir:the folder name is not valid
http://bugs.winehq.org/show_bug.cgi?id=3241
What |Old Value |New Value
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3257
Bug 3257 depends on bug 3241, which changed state.
Bug 3241 Summary: Regression: installer fails to create installation dir:the folder name is not valid
http://bugs.winehq.org/show_bug.cgi?id=3241
What |Old Value |New Value
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3353
Bug 3353 depends on bug 3241, which changed state.
Bug 3241 Summary: Regression: installer fails to create installation dir:the folder name is not valid
http://bugs.winehq.org/show_bug.cgi?id=3241
What |Old Value |New Value
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3241
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |FIXED
------- Additional Comments From jonathan(a)ernstfamily.ch 2005-24-10 16:09 -------
Fixed for good now. I confirm that it still works.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=3415
------- Additional Comments From jonathan(a)ernstfamily.ch 2005-24-10 16:06 -------
*** Bug 2140 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=2140
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From jonathan(a)ernstfamily.ch 2005-24-10 16:06 -------
*** This bug has been marked as a duplicate of 3415 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=3000
jonathan(a)ernstfamily.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine-bugs(a)winehq.org
AssignedTo|wine-bugs(a)winehq.org |jonathan(a)ernstfamily.ch
Status|ASSIGNED |NEW
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3652
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2005-24-10 15:30 -------
...nevertheless your patch makes at least the demo produce more info than ran
without the patch!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3652
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2005-24-10 15:26 -------
Nope, it isn't, but it may be related though. I tried the patch already and it
fixes indeed the startup bug in Serious Sam demo, but when i apply it and run
SplinterCell it pops up a window (with title MS Visual C++ Runtime Library):
Runtime Error; Abnormal Program Termination. That's it.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3652
Summary: Splintercell demo: no start without native msvcrt, just
"hangs"
Product: Wine
Version: CVS
Platform: PC
URL: http://downloads.gamezone.com/demos/d7133.htm
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
Hi, i would like to run the demo of this game from
http://downloads.gamezone.com/demos/d7133.htm.
Seems to have quite some bugs, but i'll file them as seperate bugs.
Installation is fine, but when trying to run it, it just says this:
[root@h202188 ~]# wine ~/.wine/drive_c/Program\ Files/Ubi\ Soft/Splinter\ Ce
ll\ Demo/system/SplinterCell.exe
fixme:process:GetProcessWorkingSetSize (0xffffffff,0x7fa5e3a4,0x7fa5e3a0): stub
wine: Unhandled exception (thread 0009), starting debugger...
Can't attach process 8: error 5
That's it. I tried to run it using winedbg but didn't give futher useful
information. When run with native msvcrt it proceeds (but then hangs due to
another bug i'll file seperately). Any hints on how to debug this further?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3012
oliver_stieber(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From oliver_stieber(a)yahoo.co.uk 2005-24-10 14:54 -------
I've picked up a copy of WORT, I had to copy all the files into /tmp to
install the game but it didn't complain about DirectX.
I think this bug can be closed, I'll take a batter look at the /tmp/ problem
and see if it's my configuration or a real bug.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3200
eric.pouech(a)wanadoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |ASSIGNED
------- Additional Comments From eric.pouech(a)wanadoo.fr 2005-24-10 14:37 -------
I'll send another fix for the first part (I hope it's going to be fine this
time). For the second part, it's simply that resizing window by the mouse
isn't supported.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=3257
------- Additional Comments From vitaliy(a)kievinfo.com 2005-24-10 14:24 -------
Could you please retest with current cvs? This bug should be fixed now.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3651
truiken(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From truiken(a)gmail.com 2005-24-10 14:15 -------
Additional information:
The only way to get the caret to show up is to press the window close button and
cancel the operation or do the similar thing with the system menu.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.