From 17c6d2ae374f560c608d3f425c257e5cde0d7dbf Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sat, 17 Dec 2011 20:41:10 +1000 Subject: [PATCH] Yet more build fixes for windows.. --- common_gui.cpp | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/common_gui.cpp b/common_gui.cpp index d1b9590d..642d8381 100644 --- a/common_gui.cpp +++ b/common_gui.cpp @@ -7,14 +7,18 @@ #include "common_gui.h" #include "qglobal.h" +#ifdef Q_WS_WIN32 +#include "windows.h" void sh_delay(int ms) { -#ifdef Q_WS_WIN32 - delay(ms); -#else - sleep(ms/1000); -#endif + Sleep(ms) } +#else +void sh_delay(int ms) +{ + sleep(ms/1000); +} +#endif #if (QT_VERSION >= QT_VERSION_CHECK(4,8,0))