From a594bd37bdafb920e088b82e2f88da9e27d58b76 Mon Sep 17 00:00:00 2001 From: NepDisk Date: Wed, 18 Feb 2026 08:59:05 -0500 Subject: [PATCH] Revert "Use in pixels since this is supposed to be the correct way of doing this" This reverts commit 8b28f97e81156380a1de59576e96608b7768bb67. --- src/sdl/ogl_sdl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sdl/ogl_sdl.c b/src/sdl/ogl_sdl.c index bd04e2a02..598af528d 100644 --- a/src/sdl/ogl_sdl.c +++ b/src/sdl/ogl_sdl.c @@ -182,7 +182,7 @@ void OglSdlFinishUpdate(boolean waitvbl) oldwaitvbl = waitvbl; - SDL_GetWindowSizeInPixels(window, &sdlw, &sdlh); + SDL_GetWindowSize(window, &sdlw, &sdlh); HWR_MakeScreenFinalTexture(); HWR_DrawScreenFinalTexture(sdlw, sdlh);