Mercurial > sdl-ios-xcode
diff src/video/windib/SDL_dibevents.c @ 721:ab0656314eef
Date: Thu, 18 Sep 2003 14:24:35 -0400
From: Scott Watson
Subject: [SDL] Improper Windows message routine calling
If this hasn't been caught yet, there's an improper method of calling a
user's window message routine in the various SDL_xxevents.c files.
Calling it improperly can cause a crash under at least XP.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 21 Sep 2003 18:40:51 +0000 |
parents | 4c740ee76027 |
children | 5429a06aa816 |
line wrap: on
line diff
--- a/src/video/windib/SDL_dibevents.c Sun Sep 21 18:32:04 2003 +0000 +++ b/src/video/windib/SDL_dibevents.c Sun Sep 21 18:40:51 2003 +0000 @@ -177,7 +177,7 @@ along to any win32 specific window proc. */ } else if (userWindowProc) { - return userWindowProc(hwnd, msg, wParam, lParam); + return CallWindowProc(userWindowProc, hwnd, msg, wParam, lParam); } } break;