# HG changeset patch # User Sam Lantinga # Date 1230940036 0 # Node ID efe4d0ce2e97c045ae12d0d9b715128475aec399 # Parent e4a469d6ddabd48c9f0c42e068be122a1c8d4883 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. diff -r e4a469d6ddab -r efe4d0ce2e97 src/video/win32/SDL_win32window.c --- a/src/video/win32/SDL_win32window.c Fri Jan 02 17:39:48 2009 +0000 +++ b/src/video/win32/SDL_win32window.c Fri Jan 02 23:47:16 2009 +0000 @@ -377,7 +377,7 @@ 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