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:
parent
a88b23e1f3
commit
8c17e200bb
1 changed files with 1 additions and 1 deletions
|
@ -689,10 +689,10 @@ void Sys_DestroyConditional(void *condv)
|
||||||
SDL_DestroyMutex(cv->mutex);
|
SDL_DestroyMutex(cv->mutex);
|
||||||
free(cv);
|
free(cv);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
void Sys_Sleep (double seconds)
|
void Sys_Sleep (double seconds)
|
||||||
{
|
{
|
||||||
SDL_Delay(seconds * 1000);
|
SDL_Delay(seconds * 1000);
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue