fix sdl non-multithreaded

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3848 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
TimeServ 2011-07-06 06:02:12 +00:00
parent a88b23e1f3
commit 8c17e200bb
1 changed files with 1 additions and 1 deletions

View File

@ -689,10 +689,10 @@ void Sys_DestroyConditional(void *condv)
SDL_DestroyMutex(cv->mutex);
free(cv);
}
#endif
void Sys_Sleep (double seconds)
{
SDL_Delay(seconds * 1000);
}
#endif