mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Yet more build fixes for windows..
This commit is contained in:
parent
bcdd670aef
commit
17c6d2ae37
@ -7,14 +7,18 @@
|
|||||||
#include "common_gui.h"
|
#include "common_gui.h"
|
||||||
#include "qglobal.h"
|
#include "qglobal.h"
|
||||||
|
|
||||||
|
#ifdef Q_WS_WIN32
|
||||||
|
#include "windows.h"
|
||||||
void sh_delay(int ms)
|
void sh_delay(int ms)
|
||||||
{
|
{
|
||||||
#ifdef Q_WS_WIN32
|
Sleep(ms)
|
||||||
delay(ms);
|
|
||||||
#else
|
|
||||||
sleep(ms/1000);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
void sh_delay(int ms)
|
||||||
|
{
|
||||||
|
sleep(ms/1000);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#if (QT_VERSION >= QT_VERSION_CHECK(4,8,0))
|
#if (QT_VERSION >= QT_VERSION_CHECK(4,8,0))
|
||||||
|
Loading…
Reference in New Issue
Block a user