--- a/src/video/windib/SDL_dibevents.c Tue Oct 08 15:48:21 2002 +0000
+++ b/src/video/windib/SDL_dibevents.c Tue Oct 08 16:25:23 2002 +0000
@@ -172,8 +172,8 @@
{
MSG msg;
- while ( PeekMessage(&msg, NULL, 0, (WM_APP-1), PM_NOREMOVE) ) {
- if ( GetMessage(&msg, NULL, 0, (WM_APP-1)) > 0 ) {
+ while ( PeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE) ) {
+ if ( GetMessage(&msg, NULL, 0, 0) > 0 ) {
DispatchMessage(&msg);
}
}
--- a/src/video/windx5/SDL_dx5events.c Tue Oct 08 15:48:21 2002 +0000
+++ b/src/video/windx5/SDL_dx5events.c Tue Oct 08 16:25:23 2002 +0000
@@ -538,8 +538,8 @@
/* Check the normal windows queue (highest preference) */
posted = 0;
while ( ! posted &&
- PeekMessage(&msg, NULL, 0, (WM_APP-1), PM_NOREMOVE) ) {
- if ( GetMessage(&msg, NULL, 0, (WM_APP-1)) > 0 ) {
+ PeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE) ) {
+ if ( GetMessage(&msg, NULL, 0, 0) > 0 ) {
DispatchMessage(&msg);
} else {
return(-1);