aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2021-11-11 08:56:35 -0800
committerGitHub <noreply@github.com>2021-11-11 08:56:35 -0800
commitf879fbfb6d52c3d106904b876a11bb1983b0c06a (patch)
tree78f8458af600d9671efc6b6f9bf3eff2887ccede
parent742d1a8b8e37dd26b5ece2d1220810372fff1939 (diff)
downloadqmk_firmware-f879fbfb6d52c3d106904b876a11bb1983b0c06a.tar.gz
qmk_firmware-f879fbfb6d52c3d106904b876a11bb1983b0c06a.zip
[Keyboard] Fix compilation issues for Lime (#15116)
-rw-r--r--keyboards/lime/keymaps/default/keymap.c3
-rw-r--r--keyboards/lime/keymaps/default/rules.mk2
2 files changed, 4 insertions, 1 deletions
diff --git a/keyboards/lime/keymaps/default/keymap.c b/keyboards/lime/keymaps/default/keymap.c
index f6c711597..2d904d36d 100644
--- a/keyboards/lime/keymaps/default/keymap.c
+++ b/keyboards/lime/keymaps/default/keymap.c
@@ -463,7 +463,7 @@ bool showedJump = true;
463 return OLED_ROTATION_270; 463 return OLED_ROTATION_270;
464 } 464 }
465 465
466 void oled_task_user(void) { 466 bool oled_task_user(void) {
467 467
468 /* Keyboard Pet Variables */ 468 /* Keyboard Pet Variables */
469 current_wpm = get_current_wpm(); 469 current_wpm = get_current_wpm();
@@ -474,6 +474,7 @@ bool showedJump = true;
474 } else { 474 } else {
475 print_logo_narrow(); 475 print_logo_narrow();
476 } 476 }
477 return false;
477 } 478 }
478 479
479#endif 480#endif
diff --git a/keyboards/lime/keymaps/default/rules.mk b/keyboards/lime/keymaps/default/rules.mk
index cc5b7ac9a..b4572ce79 100644
--- a/keyboards/lime/keymaps/default/rules.mk
+++ b/keyboards/lime/keymaps/default/rules.mk
@@ -4,4 +4,6 @@ JOYSTICK_ENABLE = yes
4JOYSTICK_DRIVER = analog 4JOYSTICK_DRIVER = analog
5EXTRAKEY_ENABLE = yes 5EXTRAKEY_ENABLE = yes
6WPM_ENABLE = yes 6WPM_ENABLE = yes
7LTO_ENABLE = yes
8
7SRC += analog.c 9SRC += analog.c