diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-04-16 23:07:50 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2016-04-16 23:07:50 -0400 |
commit | 8bbd064cf52a76508589579f19595607a1f3af21 (patch) | |
tree | cb11676373bc7adafa99a16a2239250fcde5ced0 /quantum/audio.c | |
parent | 41cc35425ab32c9a9492006da8b667d01d32dfa6 (diff) |
changes to play_notes, goodbye
Diffstat (limited to 'quantum/audio.c')
-rw-r--r-- | quantum/audio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/audio.c b/quantum/audio.c index 40d09d62fd..773edfd8ee 100644 --- a/quantum/audio.c +++ b/quantum/audio.c @@ -318,7 +318,7 @@ ISR(TIMER3_COMPA_vect) { return; } } - if (!note_resting && ((int)notes_rest != 0)) { + if (!note_resting && (notes_rest > 0)) { note_resting = true; note_frequency = 0; note_length = notes_rest; |