http://bugs.winehq.org/show_bug.cgi?id=19862
Summary: CodeCreatures crashes. Product: Wine Version: 1.1.28 Platform: PC URL: http://ftp.sunet.se/pub/games/PC/guru3d/benchmark/Code creatures_Benchmark_Pro_Setup.exe OS/Version: Linux Status: NEW Keywords: download Severity: normal Priority: P2 Component: directx-d3d AssignedTo: wine-bugs@winehq.org ReportedBy: xerox_xerox2000@yahoo.co.uk
I tried some benchmark programs from guru3d, this (rather old) benchmark program crashes. I'll attach the log generated by the app itsself. The console output didn't really tell anything interesting.
Note for myself, the dumb hack below makes the app run fine. diff --git a/dlls/d3d8/texture.c b/dlls/d3d8/texture.c index c22c491..58b5365 100644 --- a/dlls/d3d8/texture.c +++ b/dlls/d3d8/texture.c @@ -270,7 +270,7 @@ static HRESULT WINAPI IDirect3DTexture8Impl_UnlockRect(LPDIRECT3DTEXTURE8 iface, hr = IWineD3DTexture_UnlockRect(This->wineD3DTexture, Level); wined3d_mutex_unlock();
- return hr; + return 0;//hr; }
static HRESULT WINAPI IDirect3DTexture8Impl_AddDirtyRect(LPDIRECT3DTEXTURE8 iface, CONST RECT *pDirtyRect) {