diff --git a/quantum/audio/audio.c b/quantum/audio/audio.c index 802a62395b8..2cc3c2d6613 100644 --- a/quantum/audio/audio.c +++ b/quantum/audio/audio.c @@ -259,7 +259,7 @@ void audio_stop_tone(float pitch) { found = (tones[i].pitch == pitch); if (found) { for (int j = i; (j < AUDIO_TONE_STACKSIZE - 1); j++) { - tones[j] = tones[j + 1]; + tones[j] = tones[j + 1]; } tones[AUDIO_TONE_STACKSIZE - 1] = (musical_tone_t){.time_started = 0, .pitch = -1.0f, .duration = 0}; break;