diff options
author | Dipl.-Ing. Raoul Rubien, BSc <rubienr@sbox.tugraz.at> | 2021-12-12 01:58:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-11 16:58:25 -0800 |
commit | 415faebd6563fa07e2f0c830546217bdb621128f (patch) | |
tree | 18a02b940b1b340d0bf0f64c454f203947e8564a /quantum/audio/audio.c | |
parent | dd994e72ad0e1f441331d208ca2b376835e0b9b5 (diff) | |
download | qmk_firmware-415faebd6563fa07e2f0c830546217bdb621128f.tar.gz qmk_firmware-415faebd6563fa07e2f0c830546217bdb621128f.zip |
added missing audio_off_user() callback (#15457)
Co-authored-by: Raoul Rubien <raoul.rubienr@gmail.com>
Diffstat (limited to 'quantum/audio/audio.c')
-rw-r--r-- | quantum/audio/audio.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/quantum/audio/audio.c b/quantum/audio/audio.c index 49bb309e80..b3d6389dd5 100644 --- a/quantum/audio/audio.c +++ b/quantum/audio/audio.c @@ -160,6 +160,8 @@ void audio_toggle(void) { eeconfig_update_audio(audio_config.raw); if (audio_config.enable) { audio_on_user(); + } else { + audio_off_user(); } } @@ -172,6 +174,7 @@ void audio_on(void) { void audio_off(void) { PLAY_SONG(audio_off_song); + audio_off_user(); wait_ms(100); audio_stop_all(); audio_config.enable = 0; |