aboutsummaryrefslogtreecommitdiff
path: root/quantum/process_keycode/process_audio.c
diff options
context:
space:
mode:
authorGabriel Young <gabeplaysdrums@live.com>2017-03-02 11:40:06 -0800
committerGabriel Young <gabeplaysdrums@live.com>2017-03-02 11:40:06 -0800
commitd11962aeb27c73b87f8154d7f2cee747c8858d09 (patch)
tree6cdbe00dd2c18f408fb9be01d6f7d5a6762b2c5f /quantum/process_keycode/process_audio.c
parent976c856966841cd0be6e514c6365c73164f5b96d (diff)
downloadqmk_firmware-d11962aeb27c73b87f8154d7f2cee747c8858d09.tar.gz
qmk_firmware-d11962aeb27c73b87f8154d7f2cee747c8858d09.zip
fix 'stop_all_notes' naming to be more consistent
Diffstat (limited to 'quantum/process_keycode/process_audio.c')
-rw-r--r--quantum/process_keycode/process_audio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/process_keycode/process_audio.c b/quantum/process_keycode/process_audio.c
index 71c0297ee..0b6380ed3 100644
--- a/quantum/process_keycode/process_audio.c
+++ b/quantum/process_keycode/process_audio.c
@@ -54,7 +54,7 @@ void process_audio_noteoff(uint8_t note) {
54 stop_note(compute_freq_for_midi_note(note)); 54 stop_note(compute_freq_for_midi_note(note));
55} 55}
56 56
57void process_audio_stop_all_notes(void) { 57void process_audio_all_notes_off(void) {
58 stop_all_notes(); 58 stop_all_notes();
59} 59}
60 60