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.