Fixing Bug #1398196 - Windows message argument

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@703 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
fayjf 2006-09-21 22:06:57 +00:00
parent bedbe25db5
commit 938aa5fa90
2 changed files with 4 additions and 1 deletions

View File

@ -1211,3 +1211,6 @@ format changes for Windows
2006) to have the "glutInitDisplayString" ignore numerical assignments to 2006) to have the "glutInitDisplayString" ignore numerical assignments to
tokens as a temporary fix. tokens as a temporary fix.
(314) Fixed buy #1398196 in the bug tracker to the effect that passing the
wrong argument in "fghSleepForEvents" can cause odd delays

View File

@ -489,7 +489,7 @@ static void fghSleepForEvents( void )
fgWarning ( "freeglut select() error: %d", errno ); fgWarning ( "freeglut select() error: %d", errno );
} }
#elif TARGET_HOST_MS_WINDOWS #elif TARGET_HOST_MS_WINDOWS
MsgWaitForMultipleObjects( 0, NULL, FALSE, msec, QS_ALLEVENTS ); MsgWaitForMultipleObjects( 0, NULL, FALSE, msec, QS_ALLINPUT );
#endif #endif
} }