Просмотр исходного кода

fixed issue with GetScreenWidth/GetScreenHeight (#4074)

Anthony Carbajal 1 год назад
Родитель
Сommit
52f2a10db6
1 измененных файлов с 3 добавлено и 0 удалено
  1. 3 0
      src/platforms/rcore_desktop.c

+ 3 - 0
src/platforms/rcore_desktop.c

@@ -666,6 +666,9 @@ 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);
 }