aboutsummaryrefslogtreecommitdiff
path: root/keyboards/gmmk/pro/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/gmmk/pro/keymaps/default/keymap.c')
-rw-r--r--keyboards/gmmk/pro/keymaps/default/keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/gmmk/pro/keymaps/default/keymap.c b/keyboards/gmmk/pro/keymaps/default/keymap.c
index 9e5796ac1..b08400cd8 100644
--- a/keyboards/gmmk/pro/keymaps/default/keymap.c
+++ b/keyboards/gmmk/pro/keymaps/default/keymap.c
@@ -55,10 +55,11 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
55}; 55};
56 56
57 57
58void encoder_update_user(uint8_t index, bool clockwise) { 58bool encoder_update_user(uint8_t index, bool clockwise) {
59 if (clockwise) { 59 if (clockwise) {
60 tap_code(KC_VOLU); 60 tap_code(KC_VOLU);
61 } else { 61 } else {
62 tap_code(KC_VOLD); 62 tap_code(KC_VOLD);
63 } 63 }
64 return true;
64} 65}