File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -65,6 +65,8 @@ namespace ice::platform::linux::sdl2
6565 case SDL_SCANCODE_MINUS: return KeyboardKey::Minus;
6666 case SDL_SCANCODE_PERIOD: return KeyboardKey::Period;
6767 case SDL_SCANCODE_SLASH: return KeyboardKey::Slash;
68+ case SDL_SCANCODE_HOME: return KeyboardKey::Home;
69+ case SDL_SCANCODE_END: return KeyboardKey::End;
6870
6971 case SDL_SCANCODE_SEMICOLON: return KeyboardKey::SemiColon;
7072 case SDL_SCANCODE_EQUALS: return KeyboardKey::Equals;
Original file line number Diff line number Diff line change @@ -65,6 +65,8 @@ namespace ice::platform::win32::sdl2
6565 case SDL_SCANCODE_MINUS: return KeyboardKey::Minus;
6666 case SDL_SCANCODE_PERIOD: return KeyboardKey::Period;
6767 case SDL_SCANCODE_SLASH: return KeyboardKey::Slash;
68+ case SDL_SCANCODE_HOME: return KeyboardKey::Home;
69+ case SDL_SCANCODE_END: return KeyboardKey::End;
6870
6971 case SDL_SCANCODE_SEMICOLON: return KeyboardKey::SemiColon;
7072 case SDL_SCANCODE_EQUALS: return KeyboardKey::Equals;
You can’t perform that action at this time.
0 commit comments