summaryrefslogtreecommitdiffstats
path: root/keyboards/aleblazer/zodiark/keymaps/via/encoder.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/aleblazer/zodiark/keymaps/via/encoder.c')
-rw-r--r--keyboards/aleblazer/zodiark/keymaps/via/encoder.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/aleblazer/zodiark/keymaps/via/encoder.c b/keyboards/aleblazer/zodiark/keymaps/via/encoder.c
index 06d7a25777..c08cfed5c1 100644
--- a/keyboards/aleblazer/zodiark/keymaps/via/encoder.c
+++ b/keyboards/aleblazer/zodiark/keymaps/via/encoder.c
@@ -16,7 +16,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifdef ENCODER_ENABLE
-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);
@@ -30,6 +30,7 @@ void encoder_update_user(uint8_t index, bool clockwise) {
tap_code(KC_PGUP);
}
}
+ return true;
}
#endif