diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-03-07 20:20:14 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-03-07 20:20:14 +0100 |
commit | e4e066c94c5ec30a21a287ec36f108150d3c21e7 (patch) | |
tree | 49d15051783160ebc3c7b7f9821afeb52e9c32f8 /src/window | |
parent | 09dadac90c179b84b918d48fa1b790b191187efd (diff) |
Change order of keys
Diffstat (limited to 'src/window')
-rw-r--r-- | src/window/key.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window/key.c b/src/window/key.c index dca48d3..89c5835 100644 --- a/src/window/key.c +++ b/src/window/key.c @@ -89,7 +89,6 @@ const char* mgl_key_to_string(mgl_key key) { case MGL_KEY_NUMPAD7: return "Numpad7"; case MGL_KEY_NUMPAD8: return "Numpad8"; case MGL_KEY_NUMPAD9: return "Numpad9"; - case MGL_KEY_NUMPAD_ENTER: return "Numpad enter"; case MGL_KEY_F1: return "F1"; case MGL_KEY_F2: return "F2"; case MGL_KEY_F3: return "F3"; @@ -107,6 +106,7 @@ const char* mgl_key_to_string(mgl_key key) { case MGL_KEY_F15: return "F15"; case MGL_KEY_PAUSE: return "Pause"; case MGL_KEY_PRINTSCREEN: return "PrintScreen"; + case MGL_KEY_NUMPAD_ENTER: return "Numpad enter"; case __MGL_NUM_KEYS__: return ""; } return ""; |