From f664d766e46155545beb82d409f083d86bad5d0d Mon Sep 17 00:00:00 2001 From: David Hoelscher Date: Tue, 22 Oct 2024 01:14:05 -0500 Subject: [PATCH] lint --- quantum/audio/audio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;