timer on windows fix

This commit is contained in:
Adam D. Ruppe 2013-05-08 09:22:45 -04:00
parent 3f08cd5830
commit ab5c621138
1 changed files with 1 additions and 1 deletions

View File

@ -765,7 +765,7 @@ version(Windows) {
if(pulseTimeout) {
bool done = false;
while(!done) {
while(!done && PeekMessage(&message, hwnd, 0, 0, PM_NOREMOVE)) {
if(PeekMessage(&message, hwnd, 0, 0, PM_NOREMOVE)) {
ret = GetMessage(&message, hwnd, 0, 0);
if(ret == 0)
done = true;