summaryrefslogtreecommitdiff
path: root/keyboards/v4n4g0rth0n/v2/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/v4n4g0rth0n/v2/keymaps/default/keymap.c')
-rw-r--r--keyboards/v4n4g0rth0n/v2/keymaps/default/keymap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/v4n4g0rth0n/v2/keymaps/default/keymap.c b/keyboards/v4n4g0rth0n/v2/keymaps/default/keymap.c
index 93aa46b7b0..7ead586ac3 100644
--- a/keyboards/v4n4g0rth0n/v2/keymaps/default/keymap.c
+++ b/keyboards/v4n4g0rth0n/v2/keymaps/default/keymap.c
@@ -43,10 +43,10 @@ void matrix_scan_user(void){
// Reset moving to 0 so that we don't get multiple attempts to do this
int num_ticks = ((float)pot_val/max_pot_val)*max_ticks;
for (int i = 0; i<max_ticks;++i){
- tap_code(KC__VOLDOWN);
+ tap_code(KC_VOLD);
}
for (int i = 0; i<num_ticks;++i){
- tap_code(KC__VOLUP);
+ tap_code(KC_VOLU);
}
moving = false;
}