summaryrefslogtreecommitdiff
path: root/keyboards/m3n3van/keymaps/matthewdias/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/m3n3van/keymaps/matthewdias/keymap.c')
-rw-r--r--keyboards/m3n3van/keymaps/matthewdias/keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/m3n3van/keymaps/matthewdias/keymap.c b/keyboards/m3n3van/keymaps/matthewdias/keymap.c
index 83d7265b09..9ed5028c7c 100644
--- a/keyboards/m3n3van/keymaps/matthewdias/keymap.c
+++ b/keyboards/m3n3van/keymaps/matthewdias/keymap.c
@@ -40,7 +40,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
)
};
-void encoder_update_user(uint8_t index, bool clockwise) {
+bool encoder_update_user(uint8_t index, bool clockwise) {
if (index == 0) {
if (clockwise) {
tap_code(KC_VOLU);
@@ -48,4 +48,5 @@ void encoder_update_user(uint8_t index, bool clockwise) {
tap_code(KC_VOLD);
}
}
+ return true;
}