From 76271dc6b8a259ef8beea453b595c8c6d234e4f0 Mon Sep 17 00:00:00 2001 From: shweet Date: Fri, 15 Aug 2025 12:36:14 -0400 Subject: [PATCH] SDL_Delay --- src/state.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/state.cpp b/src/state.cpp index 5ba283d..0cc00e1 100644 --- a/src/state.cpp +++ b/src/state.cpp @@ -168,6 +168,8 @@ void loop(State* self) self->lastUpdate = self->update; } + + SDL_Delay(STATE_DELAY_MIN); } }