fix: Wrong mapping for KEY_END (p -> o)

This commit is contained in:
Nikola Maric
2020-09-14 17:04:57 +02:00
committed by Nikola Marić
parent 5a2eb9b3a9
commit 6d0c725abe
2 changed files with 1 additions and 1 deletions

View File

@@ -44,7 +44,7 @@ void map_space_init() {
map_space[KEY_Y] = KEY_HOME;
map_space[KEY_U] = KEY_PAGEDOWN;
map_space[KEY_I] = KEY_PAGEUP;
map_space[KEY_P] = KEY_END;
map_space[KEY_O] = KEY_END;
// number row to F keys
map_space[KEY_1] = KEY_F1;