From e44d94c194b55f9ecd8b99467b4a132512d8ac11 Mon Sep 17 00:00:00 2001 From: CrackedPixel <5776225+CrackedPixel@users.noreply.github.com> Date: Sun, 15 Mar 2026 15:20:59 -0500 Subject: [PATCH] fixed web platform resize events --- src/platforms/rcore_desktop_rgfw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platforms/rcore_desktop_rgfw.c b/src/platforms/rcore_desktop_rgfw.c index b92775592..87ad7d7c4 100755 --- a/src/platforms/rcore_desktop_rgfw.c +++ b/src/platforms/rcore_desktop_rgfw.c @@ -1332,7 +1332,7 @@ void PollInputEvents(void) CORE.Window.currentFbo.width = CORE.Window.render.width; CORE.Window.currentFbo.height = CORE.Window.render.height; #elif defined(PLATFORM_WEB_RGFW) - return; + // do nothing but prevent other behavior #else SetupViewport(platform.window->w, platform.window->h);