diff --git a/keyboards/splitkb/kyria/kyria.c b/keyboards/splitkb/kyria/kyria.c index f9c69a9e52..1c12999889 100644 --- a/keyboards/splitkb/kyria/kyria.c +++ b/keyboards/splitkb/kyria/kyria.c @@ -106,16 +106,16 @@ bool encoder_update_kb(uint8_t index, bool clockwise) { if (index == 0) { // Volume control if (clockwise) { - tap_code(KC_VOLU); + tap_code(KC_WH_R); } else { - tap_code(KC_VOLD); + tap_code(KC_WH_L); } } else if (index == 1) { // Page up/Page down if (clockwise) { - tap_code(KC_PGDN); + tap_code(KC_WH_D); } else { - tap_code(KC_PGUP); + tap_code(KC_WH_U); } } return true;