aboutsummaryrefslogtreecommitdiff
path: root/keyboards/pistachio_mp/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/pistachio_mp/keymaps/default/keymap.c')
-rw-r--r--keyboards/pistachio_mp/keymaps/default/keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/pistachio_mp/keymaps/default/keymap.c b/keyboards/pistachio_mp/keymaps/default/keymap.c
index a8e8cc73c..c206f3061 100644
--- a/keyboards/pistachio_mp/keymaps/default/keymap.c
+++ b/keyboards/pistachio_mp/keymaps/default/keymap.c
@@ -42,7 +42,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
42 ) 42 )
43}; 43};
44#ifdef ENCODER_ENABLE 44#ifdef ENCODER_ENABLE
45void encoder_update_user(uint8_t index, bool clockwise) { 45bool encoder_update_user(uint8_t index, bool clockwise) {
46 if (index == 0) { 46 if (index == 0) {
47 // Volume control 47 // Volume control
48 if (clockwise) { 48 if (clockwise) {
@@ -51,5 +51,6 @@ void encoder_update_user(uint8_t index, bool clockwise) {
51 tap_code(KC_VOLD); 51 tap_code(KC_VOLD);
52 } 52 }
53 } 53 }
54 return true;
54} 55}
55#endif 56#endif