aboutsummaryrefslogtreecommitdiff
path: root/keyboards/m3n3van/keymaps/via/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/m3n3van/keymaps/via/keymap.c')
-rw-r--r--keyboards/m3n3van/keymaps/via/keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/m3n3van/keymaps/via/keymap.c b/keyboards/m3n3van/keymaps/via/keymap.c
index 2ef9af90e..5dcb23b1c 100644
--- a/keyboards/m3n3van/keymaps/via/keymap.c
+++ b/keyboards/m3n3van/keymaps/via/keymap.c
@@ -47,7 +47,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
47 ) 47 )
48}; 48};
49 49
50void encoder_update_user(uint8_t index, bool clockwise) { 50bool encoder_update_user(uint8_t index, bool clockwise) {
51 if (index == 0) { 51 if (index == 0) {
52 if (clockwise) { 52 if (clockwise) {
53 tap_code(KC_VOLU); 53 tap_code(KC_VOLU);
@@ -55,4 +55,5 @@ void encoder_update_user(uint8_t index, bool clockwise) {
55 tap_code(KC_VOLD); 55 tap_code(KC_VOLD);
56 } 56 }
57 } 57 }
58 return true;
58} 59}