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:
Sam Lantinga
2009-01-02 23:47:16 +00:00
parent 7f3d6deffd
commit f45614d34f

View File

@@ -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