diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/i_system.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/i_system.c b/src/i_system.c index 7a8c469c..024d858f 100644 --- a/src/i_system.c +++ b/src/i_system.c @@ -30,7 +30,6 @@ #include <string.h> #include <stdarg.h> -#include "SDL.h" #include "deh_main.h" #include "doomdef.h" @@ -187,7 +186,7 @@ void I_Quit (void) void I_WaitVBL(int count) { - SDL_Delay((count * 1000) / 70); + I_Sleep((count * 1000) / 70); } byte* I_AllocLow(int length) |