Procházet zdrojové kódy

Fix SetWindowSize() for PLATFORM_WEB (#4452)

Asdqwe před 10 měsíci
rodič
revize
b8c0842b2e
1 změnil soubory, kde provedl 0 přidání a 3 odebrání
  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);
 }