Merge remote-tracking branch 'origin/develop' into xap

This commit is contained in:
QMK Bot 2023-08-02 16:08:39 +00:00
commit f7732a3753

View File

@ -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();
}