mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-17 00:38:12 +00:00
Make sure we never get a zero tick_start value
This commit is contained in:
@@ -550,6 +550,9 @@ void SDL_TicksInit(void)
|
|||||||
tick_denominator_ms = (Uint32)(tick_freq / gcd);
|
tick_denominator_ms = (Uint32)(tick_freq / gcd);
|
||||||
|
|
||||||
tick_start = SDL_GetPerformanceCounter();
|
tick_start = SDL_GetPerformanceCounter();
|
||||||
|
if (!tick_start) {
|
||||||
|
--tick_start;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void SDL_TicksQuit(void)
|
void SDL_TicksQuit(void)
|
||||||
|
Reference in New Issue
Block a user