diff options
| author | iamcheeseman <[hidden email]> | 2026-01-15 16:18:36 -0500 |
|---|---|---|
| committer | iamcheeseman <[hidden email]> | 2026-01-15 16:18:36 -0500 |
| commit | ef550acd2edb48b80bb9c597ad0ebd46b2432107 (patch) | |
| tree | a5cae4dfb8565779234816efb6be8c74e579908c /src/main.odin | |
| parent | 86738d3406671046ce50a2d1b07d858e14b2f968 (diff) | |
Change window size to match render size
Diffstat (limited to 'src/main.odin')
| -rw-r--r-- | src/main.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.odin b/src/main.odin index 0775449..8703a64 100644 --- a/src/main.odin +++ b/src/main.odin @@ -197,7 +197,7 @@ main :: proc() { rl.SetTraceLogCallback(raylib_log) - rl.InitWindow(480 * 2, 360 * 2, "Demonchime") + rl.InitWindow(SCREEN_WIDTH * 3, SCREEN_HEIGHT * 3, "Demonchime") rl.SetWindowState({.WINDOW_RESIZABLE}) rl.SetTargetFPS(240) |
