diff options
author | QMK Bot <hello@qmk.fm> | 2022-07-28 00:57:13 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2022-07-28 00:57:13 +0000 |
commit | 476d709fa5182e2e01628cb26a379a371930ac47 (patch) | |
tree | 564367d5909b1839a3a4dc1ba22169eb86ddf792 /keyboards/mechwild/murphpad/keymaps/jonavin/keymap.c | |
parent | b029252e76d48d36831537a59043e36ee354586b (diff) | |
parent | e7affd05417a48b1e5c0948a24034227384a5d13 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/mechwild/murphpad/keymaps/jonavin/keymap.c')
-rw-r--r-- | keyboards/mechwild/murphpad/keymaps/jonavin/keymap.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/keyboards/mechwild/murphpad/keymaps/jonavin/keymap.c b/keyboards/mechwild/murphpad/keymaps/jonavin/keymap.c index 043eeb992b..d7c03bd228 100644 --- a/keyboards/mechwild/murphpad/keymaps/jonavin/keymap.c +++ b/keyboards/mechwild/murphpad/keymaps/jonavin/keymap.c @@ -274,7 +274,7 @@ bool process_record_keymap(uint16_t keycode, keyrecord_t *record) { break; } } - return true; + return false; } #endif @@ -296,6 +296,10 @@ bool process_record_keymap(uint16_t keycode, keyrecord_t *record) { } #ifdef LANDSCAPE_MODE + oled_rotation_t oled_init_user(oled_rotation_t rotation) { + return OLED_ROTATION_0; // do not flip the display + } + bool oled_task_user(void) { render_logo(); @@ -365,10 +369,6 @@ bool process_record_keymap(uint16_t keycode, keyrecord_t *record) { // regular mode #ifndef LANDSCAPE_MODE - oled_rotation_t oled_init_user(oled_rotation_t rotation) { - return OLED_ROTATION_270; // flips the display 270 degrees - } - bool oled_task_user(void) { render_logo(); oled_set_cursor(0,5); |