From 0ffde44b784d3777972adff8ddd129a15068cbe3 Mon Sep 17 00:00:00 2001 From: asdqwe Date: Thu, 26 Dec 2024 22:18:54 -0300 Subject: [PATCH] Add implementation for CORE.Window.eventWaiting on PLATFORM_DESKTOP_SDL --- src/platforms/rcore_desktop_sdl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/platforms/rcore_desktop_sdl.c b/src/platforms/rcore_desktop_sdl.c index 5d316df50..99c7eb4b7 100644 --- a/src/platforms/rcore_desktop_sdl.c +++ b/src/platforms/rcore_desktop_sdl.c @@ -1378,7 +1378,8 @@ void PollInputEvents(void) CORE.Window.resizedLastFrame = false; - if (((CORE.Window.flags & FLAG_WINDOW_MINIMIZED) > 0) && ((CORE.Window.flags & FLAG_WINDOW_ALWAYS_RUN) == 0)) SDL_WaitEvent(NULL); + if ((CORE.Window.eventWaiting) || (((CORE.Window.flags & FLAG_WINDOW_MINIMIZED) > 0) && ((CORE.Window.flags & FLAG_WINDOW_ALWAYS_RUN) == 0))) SDL_WaitEvent(NULL); + if (CORE.Window.eventWaiting) CORE.Time.previous = GetTime(); SDL_Event event = { 0 }; while (SDL_PollEvent(&event) != 0)