diff --git a/source/exhumed/src/input.cpp b/source/exhumed/src/input.cpp index 8e87fd2d2..11530951d 100644 --- a/source/exhumed/src/input.cpp +++ b/source/exhumed/src/input.cpp @@ -176,9 +176,7 @@ void WaitNoKey(int nSecs, void (*pFunc) (void)) while (nTotalTime > (int)totalclock) { -#ifdef _MSC_VER HandleAsync(); -#endif if (pFunc) { pFunc(); } @@ -191,9 +189,7 @@ int WaitAnyKey(int nSecs) while (1) { -#ifdef _MSC_VER HandleAsync(); -#endif if (nTotalTime <= (int)totalclock || nSecs == -1) { return -1; }