From 100697ebab662b3c19299cf0002d77bac3f00ca6 Mon Sep 17 00:00:00 2001 From: Drashna Jaelre Date: Mon, 18 Feb 2019 12:32:38 -0800 Subject: Stop all notes on startup, if there is no song and audio is disabled to prevent continouse tone (#5173) --- quantum/audio/audio_arm.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'quantum/audio') diff --git a/quantum/audio/audio_arm.c b/quantum/audio/audio_arm.c index f24ce4bd0..a3a403957 100644 --- a/quantum/audio/audio_arm.c +++ b/quantum/audio/audio_arm.c @@ -317,6 +317,8 @@ void audio_init() { if (audio_config.enable) { PLAY_SONG(startup_song); + } else { + stop_all_notes(); } } -- cgit v1.2.3-24-g4f1b