aboutsummaryrefslogtreecommitdiff
path: root/keyboards/dumbpad/v1x_right/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/dumbpad/v1x_right/keymaps/default/keymap.c')
-rw-r--r--keyboards/dumbpad/v1x_right/keymaps/default/keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/dumbpad/v1x_right/keymaps/default/keymap.c b/keyboards/dumbpad/v1x_right/keymaps/default/keymap.c
index 4050ac942..48002ff4d 100644
--- a/keyboards/dumbpad/v1x_right/keymaps/default/keymap.c
+++ b/keyboards/dumbpad/v1x_right/keymaps/default/keymap.c
@@ -72,7 +72,7 @@ void keyboard_post_init_user(void) {
72 // debug_mouse = true; 72 // debug_mouse = true;
73} 73}
74 74
75void encoder_update_user(uint8_t index, bool clockwise) { 75bool encoder_update_user(uint8_t index, bool clockwise) {
76 /* Custom encoder control - handles CW/CCW turning of encoder 76 /* Custom encoder control - handles CW/CCW turning of encoder
77 * Default behavior: 77 * Default behavior:
78 * main layer: 78 * main layer:
@@ -103,4 +103,5 @@ void encoder_update_user(uint8_t index, bool clockwise) {
103 break; 103 break;
104 } 104 }
105 } 105 }
106 return true;
106} 107}