aboutsummaryrefslogtreecommitdiff
path: root/keyboards/handwired/hnah108/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/handwired/hnah108/keymaps/default/keymap.c')
-rw-r--r--keyboards/handwired/hnah108/keymaps/default/keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/handwired/hnah108/keymaps/default/keymap.c b/keyboards/handwired/hnah108/keymaps/default/keymap.c
index 682ca0812..d4d4cde4b 100644
--- a/keyboards/handwired/hnah108/keymaps/default/keymap.c
+++ b/keyboards/handwired/hnah108/keymaps/default/keymap.c
@@ -46,7 +46,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
46 ) 46 )
47}; 47};
48 48
49void encoder_update_user(uint8_t index, bool clockwise) { 49bool encoder_update_user(uint8_t index, bool clockwise) {
50 if (index == 0) { 50 if (index == 0) {
51 if (IS_LAYER_ON(_FN)) { 51 if (IS_LAYER_ON(_FN)) {
52 if (clockwise) { 52 if (clockwise) {
@@ -62,6 +62,7 @@ void encoder_update_user(uint8_t index, bool clockwise) {
62 } 62 }
63 } 63 }
64 } 64 }
65 return true;
65} 66}
66 67
67void rgb_matrix_indicators_user(void) { 68void rgb_matrix_indicators_user(void) {