From 58c3f2332709c7bad722eef1f654b808364b9517 Mon Sep 17 00:00:00 2001 From: Ed_ Date: Thu, 8 Feb 2024 22:36:52 -0500 Subject: [PATCH] Moved the curly to KP_Enter on the lookup table to prevent a false syntax error for now --- code/input.odin | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/input.odin b/code/input.odin index bb25206..3f4d6db 100644 --- a/code/input.odin +++ b/code/input.odin @@ -477,8 +477,7 @@ to_raylib_key :: proc ( key : i32 ) -> rl.KeyboardKey { rl.KeyboardKey.KP_SUBTRACT, rl.KeyboardKey.KP_MULTIPLY, rl.KeyboardKey.KP_DIVIDE, - rl.KeyboardKey.KP_ENTER - } + rl.KeyboardKey.KP_ENTER } return raylib_key_lookup_table[ key ] }