Fix SetWindowSize() for PLATFORM_WEB (#4452)

This commit is contained in:
Asdqwe 2024-10-30 18:21:37 -03:00 committed by GitHub
parent 3bad05aa7b
commit b8c0842b2e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -667,9 +667,6 @@ void SetWindowMaxSize(int width, int height)
// Set window dimensions
void SetWindowSize(int width, int height)
{
CORE.Window.screen.width = width;
CORE.Window.Screen.height = height;
glfwSetWindowSize(platform.handle, width, height);
}