mirror of https://github.com/adamdruppe/arsd.git
timer on windows fix
This commit is contained in:
parent
3f08cd5830
commit
ab5c621138
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue