Merge pull request #786 from mannkind/patch-1
Fix lets_split.c so that audio can be disabled
This commit is contained in:
commit
812219e8a0
1 changed files with 5 additions and 3 deletions
|
@ -24,7 +24,9 @@ void matrix_init_kb(void) {
|
||||||
};
|
};
|
||||||
|
|
||||||
void shutdown_user(void) {
|
void shutdown_user(void) {
|
||||||
PLAY_NOTE_ARRAY(tone_goodbye, false, 0);
|
#ifdef AUDIO_ENABLE
|
||||||
_delay_ms(150);
|
PLAY_NOTE_ARRAY(tone_goodbye, false, 0);
|
||||||
stop_all_notes();
|
_delay_ms(150);
|
||||||
|
stop_all_notes();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue