diff options
| author | Ray <[email protected]> | 2021-06-24 10:39:56 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2021-06-24 10:39:56 +0200 |
| commit | 2cce5a24c90321df0eed83a1f5e45131a2fe27ee (patch) | |
| tree | 874d5efffcf7a59000ac86c036a311a6bc346172 | |
| parent | 43efe92e215901da2520a4d19e995e5a87c8e948 (diff) | |
| parent | f7a6b94f46b296394791a8104663bcc94a877b1a (diff) | |
| download | raylib-2cce5a24c90321df0eed83a1f5e45131a2fe27ee.tar.gz raylib-2cce5a24c90321df0eed83a1f5e45131a2fe27ee.zip | |
Merge branch 'master' of https://github.com/raysan5/raylib
| -rw-r--r-- | src/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |
