diff options
author | Nebuleon <2391500+Nebuleon@users.noreply.github.com> | 2023-08-02 12:07:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-02 17:07:43 +0100 |
commit | f0c94530831805c7309eb833cdf31e3f0d9d99e1 (patch) | |
tree | 704e2059047ffb20efd8b975e7827fd50ebc3bb9 /quantum | |
parent | b2d068d1aa95265f16670cbf5a68da745602fc12 (diff) |
audio: Don't play the first note of zero-note melodies (#21661)
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/audio/audio.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/audio/audio.c b/quantum/audio/audio.c index b9b21066cb..28c8267517 100644 --- a/quantum/audio/audio.c +++ b/quantum/audio/audio.c @@ -311,6 +311,10 @@ void audio_play_melody(float (*np)[][2], uint16_t n_count, bool n_repeat) { return; } + if (n_count == 0) { + return; + } + if (!audio_initialized) { audio_init(); } |