added backslash to key

This commit is contained in:
herbglitch 2024-07-27 03:47:38 -06:00
parent 95c93e5d10
commit ae11c5d0b8
2 changed files with 5 additions and 0 deletions

View file

@ -147,6 +147,9 @@ ARC_ConsoleKey ARC_Keyboard_GetConsoleKey(enum ARC_ConsoleKey_Key key){
case ARC_CONSOLE_KEY_RIGHT:
return (ARC_ConsoleKey){ KEY_RIGHT };
case ARC_CONSOLE_KEY_FORWARD_SLASH:
return (ARC_ConsoleKey){ (int32_t)'/' };
case ARC_CONSOLE_KEY_BACKSPACE:
return (ARC_ConsoleKey){ KEY_BACKSPACE };