Fix Clicky Down code

This commit is contained in:
Drashna Jaelre 2018-04-28 02:12:25 -07:00 committed by Jack Humbert
parent 3d6119856a
commit 6f37bd6678
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ bool process_clicky(uint16_t keycode, keyrecord_t *record) {
clicky_freq = new_freq;
}
}
if (keycode == CLICKY_TOGGLE && record->event.pressed) {
if (keycode == CLICKY_DOWN && record->event.pressed) {
float new_freq = clicky_freq / AUDIO_CLICKY_FREQ_FACTOR;
if (new_freq > AUDIO_CLICKY_FREQ_MIN) {
clicky_freq = new_freq;