diff options
author | Ryan <fauxpark@gmail.com> | 2022-10-23 07:45:20 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-22 21:45:20 +0100 |
commit | 74484e21afc819b8e20f408aebc5c4e6cfdcc991 (patch) | |
tree | 0549490929ac1b13d035e1ea3b13b32debc26dc1 /quantum/quantum.c | |
parent | 2e2e7511fdcafd42659d77eeeff4da88301f73ee (diff) |
Deprecate `VLK_TOG` for `VK_TOGG` (#18807)
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r-- | quantum/quantum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index add7402550..2c55f45e3b 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -379,7 +379,7 @@ bool process_record_quantum(keyrecord_t *record) { #endif return false; #ifdef VELOCIKEY_ENABLE - case VLK_TOG: + case QK_VELOCIKEY_TOGGLE: velocikey_toggle(); return false; #endif |