Yet more build fixes for windows..

This commit is contained in:
Mark Watkins 2011-12-17 20:41:10 +10:00
parent bcdd670aef
commit 17c6d2ae37

View File

@ -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))