summaryrefslogtreecommitdiff
path: root/quantum/audio.c
diff options
context:
space:
mode:
authorIBNobody <ibnobody@gmail.com>2016-04-17 12:55:19 -0500
committerIBNobody <ibnobody@gmail.com>2016-04-17 12:55:19 -0500
commit3103ea542f0039637a1a266df79a97a7a13fa6b4 (patch)
tree24a840d4a80678ec24a0f5e5a51e1b217d0568fa /quantum/audio.c
parentd5b72e7bde5ede25f7d5699b50b7d9eb6f31ba92 (diff)
parenta67d425f4d5278595e7ab785a0f246b83fb1a09f (diff)
Merge remote-tracking branch 'remotes/jackhumbert/master' into personal_atomic_planck
Diffstat (limited to 'quantum/audio.c')
-rw-r--r--quantum/audio.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/quantum/audio.c b/quantum/audio.c
index 58b9ab76bf..3ccd5ab9bc 100644
--- a/quantum/audio.c
+++ b/quantum/audio.c
@@ -353,7 +353,6 @@ if (audio_config.enable) {
if (note)
stop_all_notes();
- notes = true;
notes_pointer = np;
notes_count = n_count;
@@ -378,6 +377,8 @@ if (audio_config.enable) {
TIMSK3 |= _BV(OCIE3A);
TCCR3A |= _BV(COM3A1);
#endif
+
+ notes = true;
}
}
@@ -407,7 +408,6 @@ if (audio_config.enable && voices < 8) {
if (notes)
stop_all_notes();
- note = true;
#ifdef PWM_AUDIO
freq = freq / SAMPLE_RATE;
#endif
@@ -439,6 +439,7 @@ if (audio_config.enable && voices < 8) {
TCCR3A |= _BV(COM3A1);
#endif
+ note = true;
}
}