http://bugs.winehq.org/show_bug.cgi?id=58071
--- Comment #11 from Rafał Mużyło galtgendo@o2.pl --- (In reply to wine from comment #10)
(In reply to wine from comment #9)
Created attachment 78338 [details] Offset screen
Disregard the last comment, I just had to cd into the game's directory before launching it. Lowering the resolution to 1920x1080 lets me launch the game, but the menu is offset as in the provided screenshot.
This patch let's me start the game without crashing but with the offset view.
while (wined3d_output_get_mode(ddraw->wined3d_output,
checkFormatList[fmt], WINED3D_SCANLINE_ORDERING_UNKNOWN, modenum++, &mode, false) == WINED3D_OK) {
if(mode.width >= 1920 && mode.height >= 1080)
continue;
If you were to run windowed and tried moving the window, there's a strong possibility, that this 'offset' is strongly randomized as you move the window.