comment clarification

This commit is contained in:
SuperUserNameMan 2024-07-11 17:53:08 +02:00 committed by GitHub
parent 7ddb880f02
commit 21bff481ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -170,7 +170,7 @@ void ToggleFullscreen(void)
CORE.Window.fullscreen = true; CORE.Window.fullscreen = true;
CORE.Window.flags |= FLAG_FULLSCREEN_MODE; CORE.Window.flags |= FLAG_FULLSCREEN_MODE;
// We need to save the "render size" intead of the "screen size" // We need to save the "size at which the content of the window is rendered"
// because we might have FLAG_WINDOW_HIGHDPI enabled. // because we might have FLAG_WINDOW_HIGHDPI enabled.
int renderWidth = GetRenderWidth(); int renderWidth = GetRenderWidth();