diff --git a/src/main.c b/src/main.c index 02d9a04..bc463fa 100644 --- a/src/main.c +++ b/src/main.c @@ -10,6 +10,7 @@ static inline void update_time(void) static uint64_t last_clock_state = 0; uint64_t start_clock = SDL_GetTicksNS(); game.delta_time_ms = SDL_NS_TO_MS((float)(start_clock - last_clock_state)); + if(game.delta_time_ms > 100.0f) game.delta_time_ms = 100.0f; last_clock_state = start_clock; }