Moved the curly to KP_Enter on the lookup table to prevent a false syntax error for now

This commit is contained in:
Edward R. Gonzalez 2024-02-08 22:36:52 -05:00
parent 6819336696
commit 58c3f23327

View File

@ -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 ]
}