From 7660d74713454efaed11dc31bb5f7332383dfb42 Mon Sep 17 00:00:00 2001 From: nukeykt Date: Thu, 21 Nov 2019 01:55:22 +0900 Subject: [PATCH] Unifdef HandleAsync in input.cpp --- source/exhumed/src/input.cpp | 4 ---- 1 file changed, 4 deletions(-) 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; }