1
0
Fork 0

Notes Bugfix

This commit is contained in:
IBNobody 2016-04-17 22:08:05 -05:00
parent 5c98ad5960
commit ef73ab6628
2 changed files with 33 additions and 38 deletions

View file

@ -351,7 +351,8 @@ void play_notes(float (*np)[][2], uint8_t n_count, bool n_repeat, float n_rest)
if (audio_config.enable) {
if (note || notes)
// Cancel note if a note is playing
if (note)
stop_all_notes();
notes_pointer = np;
@ -406,7 +407,8 @@ void play_note(double freq, int vol) {
if (audio_config.enable && voices < 8) {
if (note || notes)
// Cancel notes if notes are playing
if (notes)
stop_all_notes();
#ifdef PWM_AUDIO
freq = freq / SAMPLE_RATE;