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

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

pull/4452/head
Arche Washi 2 недель назад
committed by GitHub
Родитель
Сommit
3bad05aa7b
Не найден GPG ключ соответствующий данной подписи Идентификатор GPG ключа: B5690EEEBB952194
2 измененных файлов: 6 добавлений и 0 удалений
  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 Просмотреть файл

@ -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 Просмотреть файл

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

Загрузка…
Отмена
Сохранить