From cc4de1d1f9073dc75a4d79cdc2551b5e2e1b5215 Mon Sep 17 00:00:00 2001 From: Julianiolo <50519317+Julianiolo@users.noreply.github.com> Date: Sun, 30 May 2021 18:33:38 +0200 Subject: [PATCH] note (#1797) --- src/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.c b/src/core.c index 1289f54d5..5d7b0eca3 100644 --- a/src/core.c +++ b/src/core.c @@ -3548,7 +3548,7 @@ static bool InitGraphicsDevice(int width, int height) CORE.Window.display.width = mode->width; CORE.Window.display.height = mode->height; - // Screen size security check + // Set screen width/height to the display width/height if they are 0 if (CORE.Window.screen.width == 0) CORE.Window.screen.width = CORE.Window.display.width; if (CORE.Window.screen.height == 0) CORE.Window.screen.height = CORE.Window.display.height; #endif // PLATFORM_DESKTOP