diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-09-02 22:17:26 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-09-02 22:17:26 +1000 |
commit | ac7577b4df91fbf31541f203e88eccb64b98365a (patch) | |
tree | bc69420c0cab776c49b27deeb93d9d2ffaff75c7 /source/core/StarInputEvent.hpp | |
parent | 566b0f4d362fb2858fe76dca805c4d2930da0f27 (diff) |
Rename Keypad enums
noticed keypad binds were named like this in SE (probably due to using the names given by SDL there) and it's nicer anyway. better do this sooner than later.
Diffstat (limited to 'source/core/StarInputEvent.hpp')
-rw-r--r-- | source/core/StarInputEvent.hpp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/source/core/StarInputEvent.hpp b/source/core/StarInputEvent.hpp index e8740b5..cace466 100644 --- a/source/core/StarInputEvent.hpp +++ b/source/core/StarInputEvent.hpp @@ -78,23 +78,23 @@ enum class Key : uint16_t { Y, Z, Delete, - Kp0, - Kp1, - Kp2, - Kp3, - Kp4, - Kp5, - Kp6, - Kp7, - Kp8, - Kp9, - Kp_period, - Kp_divide, - Kp_multiply, - Kp_minus, - Kp_plus, - Kp_enter, - Kp_equals, + Keypad0, + Keypad1, + Keypad2, + Keypad3, + Keypad4, + Keypad5, + Keypad6, + Keypad7, + Keypad8, + Keypad9, + KeypadPeriod, + KeypadDivide, + KeypadMultiply, + KeypadMinus, + KeypadPlus, + KeypadEnter, + KeypadEquals, Up, Down, Right, |