aboutsummaryrefslogtreecommitdiff
path: root/src/draw.odin
diff options
context:
space:
mode:
authoriamcheeseman <[hidden email]>2026-01-15 16:17:16 -0500
committeriamcheeseman <[hidden email]>2026-01-15 16:17:16 -0500
commit86738d3406671046ce50a2d1b07d858e14b2f968 (patch)
tree3261e9fb85d7a438a6d5e37df447e209e3b26532 /src/draw.odin
parent4563dfa077e029fbefd192f087338d186155ebfc (diff)
Ensure upwards and downwards transitions work
Diffstat (limited to 'src/draw.odin')
-rw-r--r--src/draw.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/draw.odin b/src/draw.odin
index e51e0ae..8e31b96 100644
--- a/src/draw.odin
+++ b/src/draw.odin
@@ -7,7 +7,7 @@ import rl "vendor:raylib"
Color :: [4]f32
-SCREEN_WIDTH :: 480
+SCREEN_WIDTH :: 320
SCREEN_HEIGHT :: 320
SCREEN_SIZE :: Vec2{SCREEN_WIDTH, SCREEN_HEIGHT}
@@ -37,7 +37,7 @@ deinit_draw :: proc() {
draw_new_frame :: proc() {
rl.BeginTextureMode(renderer.screen)
- rl.ClearBackground(_color_to_rl(Color{0.2, 0.2, 0.2, 1}))
+ rl.ClearBackground(rl.BLACK)
}
draw_end_frame :: proc() {