Module: wine Branch: master Commit: fd0e60180a1979e3dd8730bd4922556a73353ea6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=fd0e60180a1979e3dd8730bd49...
Author: Roderick Colenbrander thunderbird2k@gmx.net Date: Thu Aug 21 20:51:18 2008 +0000
wined3d: Fix window rewrite regression.
---
dlls/wined3d/device.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/dlls/wined3d/device.c b/dlls/wined3d/device.c index 0efe88f..d247d65 100644 --- a/dlls/wined3d/device.c +++ b/dlls/wined3d/device.c @@ -1319,8 +1319,7 @@ static void WINAPI IWineD3DDeviceImpl_SetupFullscreenWindow(IWineD3DDevice *ifac
/* Inform the window about the update. */ SetWindowPos(window, HWND_TOP, 0, 0, - w, h, SWP_FRAMECHANGED); - ShowWindow(window, SW_NORMAL); + w, h, SWP_FRAMECHANGED | SWP_SHOWWINDOW); }
/*****************************************************************************