From 80b8174acb340a36194c1ebe4905ab6cca8fdb8f Mon Sep 17 00:00:00 2001 From: Philipp Sehmisch Date: Fri, 2 Oct 2009 21:43:30 +0200 Subject: UNIX compilation fix for last commit --- src/game-server/main-game.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/game-server/main-game.cpp b/src/game-server/main-game.cpp index ebc92d41..4d2c716c 100644 --- a/src/game-server/main-game.cpp +++ b/src/game-server/main-game.cpp @@ -24,6 +24,12 @@ #include #include #include +#include + +#ifdef __MINGW32__ +#include +#define usleep(usec) (Sleep ((usec) / 1000), 0) +#endif #ifdef HAVE_CONFIG_H #include "../config.h" @@ -308,7 +314,7 @@ int main(int argc, char *argv[]) if (!isConnected) { LOG_INFO("Retrying in "<<++waittime<<" seconds"); - Sleep(waittime * 1000); + usleep(waittime * 1000); } } -- cgit v1.2.3-70-g09d2