Parcourir la source

fix the issue with GetScreenWidth/GetScreenHeight that was identified on other platforms (#4451)

pull/4452/head
Arche Washi il y a 2 semaines
committed by GitHub
Parent
révision
3bad05aa7b
Aucune clé connue n'a été trouvée dans la base pour cette signature ID de la clé GPG: B5690EEEBB952194
2 fichiers modifiés avec 6 ajouts et 0 suppressions
  1. +3
    -0
      src/platforms/rcore_desktop_rgfw.c
  2. +3
    -0
      src/platforms/rcore_web.c

+ 3
- 0
src/platforms/rcore_desktop_rgfw.c Voir le fichier

@ -520,6 +520,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;
RGFW_window_resize(platform.window, RGFW_AREA(width, height));
}

+ 3
- 0
src/platforms/rcore_web.c Voir le fichier

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

Chargement…
Annuler
Enregistrer