13
0

Add windows equivalent of hack in timefx

This commit is contained in:
Paul Davis 2013-07-11 22:06:20 -04:00
parent aa29b3b44c
commit 32320ec31d

View File

@ -402,9 +402,12 @@ Editor::timefx_thread (void *arg)
by the GUI ...
*/
#ifdef WIN32
Sleep(2000);
#else
struct timespec t = { 2, 0 };
nanosleep (&t, 0);
#endif
return 0;
}