Sfoglia il codice sorgente

Merge branch 'master' of https://github.com/raysan5/raylib

pull/1851/head
Ray 3 anni fa
parent
commit
2cce5a24c9
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      src/core.c

+ 1
- 1
src/core.c Vedi File

@ -1560,7 +1560,7 @@ void SetWindowMinSize(int width, int height)
// TODO: Issues on HighDPI scaling
void SetWindowSize(int width, int height)
{
#if defined(PLATFORM_DESKTOP)
#if defined(PLATFORM_DESKTOP) || defined(PLATFORM_WEB)
glfwSetWindowSize(CORE.Window.handle, width, height);
#endif
#if defined(PLATFORM_WEB)

Caricamento…
Annulla
Salva