Bugfix: Windows lacks sleep(), so need to use Sleep() from util.h

This commit is contained in:
Luke Dashjr 2012-04-06 17:44:26 -04:00
parent bf1f995c4c
commit 527b512cf7

View File

@ -8,6 +8,7 @@
#include "headers.h"
#include "init.h"
#include "util.h"
#include <QApplication>
#include <QMessageBox>
@ -45,7 +46,7 @@ int ThreadSafeMessageBox(const std::string& message, const std::string& caption,
if (modal)
while (!guiref)
sleep(1);
Sleep(1000);
// Message from network thread
if(guiref)