diff options
author | Jack Humbert <jack.humb@gmail.com> | 2017-06-27 16:57:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-27 16:57:19 -0400 |
commit | a52836e669cb41b39629076f4cd6f1d4d8a949b1 (patch) | |
tree | 915375855e8a8d667f2071391dc56a390db52854 /quantum/audio/voices.c | |
parent | 4ba9438c3f71e6ea3433be4f9e1a28d36471d247 (diff) | |
parent | 7d28a417c035b66529d7f6d49479fe4c22737134 (diff) |
Merge pull request #1445 from qmk/dual_audio
Allow for duophony (C6 and B5) and B5 audio
Diffstat (limited to 'quantum/audio/voices.c')
-rw-r--r-- | quantum/audio/voices.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/audio/voices.c b/quantum/audio/voices.c index 54ebd423b1..94147ccb66 100644 --- a/quantum/audio/voices.c +++ b/quantum/audio/voices.c @@ -44,7 +44,7 @@ float voice_envelope(float frequency) { switch (voice) { case default_voice: - glissando = true; + glissando = false; note_timbre = TIMBRE_50; polyphony_rate = 0; break; |