diff src/video/windx5/SDL_dx5events.c @ 523:c210010f50f4

Fixed windows event handling for ActiveX controls (thanks Huib-Jan!)
author Sam Lantinga <slouken@libsdl.org>
date Tue, 08 Oct 2002 16:25:23 +0000
parents da6a7e859616
children bf7f477fb2b2
line wrap: on
line diff
--- 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);