Browse Source

Allow SetWindowSize() on web (#1847)

pull/1849/head
Nikhilesh S 3 years ago
committed by GitHub
parent
commit
f7a6b94f46
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/core.c

+ 1
- 1
src/core.c View 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)

Loading…
Cancel
Save