浏览代码

Fix SetWindowSize() for PLATFORM_WEB (#4452)

Asdqwe 10 月之前
父节点
当前提交
b8c0842b2e
共有 1 个文件被更改,包括 0 次插入3 次删除
  1. 0 3
      src/platforms/rcore_web.c

+ 0 - 3
src/platforms/rcore_web.c

@@ -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);
 }