Bladeren bron

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

pull/4452/head
Arche Washi 2 weken geleden
committed by GitHub
bovenliggende
commit
3bad05aa7b
Geen bekende sleutel gevonden voor deze handtekening in de database GPG sleutel-ID: B5690EEEBB952194
2 gewijzigde bestanden met toevoegingen van 6 en 0 verwijderingen
  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 Bestand weergeven

@ -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 Bestand weergeven

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

Laden…
Annuleren
Opslaan