Переглянути джерело

Do not use SDL for Win32 timers. The OS has all we need.

legacy
Sam Hocevar sam 14 роки тому
джерело
коміт
787818d0fb
1 змінених файлів з 1 додано та 2 видалено
  1. +1
    -2
      src/timer.cpp

+ 1
- 2
src/timer.cpp Переглянути файл

@@ -17,7 +17,6 @@
#elif defined _WIN32
# define WIN32_LEAN_AND_MEAN
# include <windows.h>
# include <SDL.h> // FIXME: this should not be needed
#else
# include <SDL.h>
#endif
@@ -69,7 +68,7 @@ private:
cycles0 = cycles;
towait = deltams - ret;
if (towait > 5e-4f) // FIXME: use native Win32 stuff
SDL_Delay((int)(towait + 0.5f));
Sleep((int)(towait + 0.5f));
#else
/* The crappy SDL fallback */
Uint32 ticks = SDL_GetTicks();


Завантаження…
Відмінити
Зберегти