X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=sys_sdl.c;h=72c5953a6429ea823ab58a88662bb1084a2fe323;hb=fd8eacf626644fd3b253da5b8177e6d5cd580ce5;hp=c781cfed3cff43f632c862a2e312362ca5887a31;hpb=39ffc8f99e2ea7bed0b477ce5b9220821f93adc1;p=xonotic%2Fdarkplaces.git diff --git a/sys_sdl.c b/sys_sdl.c index c781cfed..72c5953a 100644 --- a/sys_sdl.c +++ b/sys_sdl.c @@ -1,3 +1,4 @@ +#include "quakedef.h" #ifdef WIN32 #include @@ -10,8 +11,6 @@ #include -#include "quakedef.h" - #include // ======================================================================= @@ -157,8 +156,6 @@ char *Sys_ConsoleInput(void) void Sys_Sleep(int microseconds) { - if (microseconds < 1000) - microseconds = 1000; SDL_Delay(microseconds / 1000); }