mirror of
https://github.com/yawut/SDL.git
synced 2026-08-25 18:25:16 -05:00
Date: Fri, 02 Jan 2009 23:22:39 +0100
From: Couriersud Subject: SDL1.3 Win32 Resize bug the attached diff fixes a bug where width and height were exchanged when resizing a window.
This commit is contained in:
@@ -377,7 +377,7 @@ WIN_SetWindowSize(_THIS, SDL_Window * window)
|
||||
w = (rect.right - rect.left);
|
||||
h = (rect.bottom - rect.top);
|
||||
|
||||
SetWindowPos(hwnd, top, 0, 0, h, w, (SWP_NOCOPYBITS | SWP_NOMOVE));
|
||||
SetWindowPos(hwnd, top, 0, 0, w, h, (SWP_NOCOPYBITS | SWP_NOMOVE));
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user