summaryrefslogtreecommitdiffstats
path: root/quantum/audio/voices.c
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/audio/voices.c')
-rw-r--r--quantum/audio/voices.c50
1 files changed, 25 insertions, 25 deletions
diff --git a/quantum/audio/voices.c b/quantum/audio/voices.c
index 0b4b463c4..de9f8ae54 100644
--- a/quantum/audio/voices.c
+++ b/quantum/audio/voices.c
@@ -6,7 +6,7 @@ extern uint16_t envelope_index;
extern float note_timbre;
extern float polyphony_rate;
-voice_type voice = duty_osc;
+voice_type voice = default_voice;
void set_voice(voice_type v) {
voice = v;
@@ -99,30 +99,30 @@ float voice_envelope(float frequency) {
if ((envelope_index % 8) == 0)
note_timbre = 0;
break;
- case duty_fifth_down:
- note_timbre = 0.5;
- if ((envelope_index % 3) == 0)
- note_timbre = 0.75;
- break;
- case duty_fourth_down:
- note_timbre = 0.0;
- if ((envelope_index % 12) == 0)
- note_timbre = 0.75;
- if (((envelope_index % 12) % 4) != 1)
- note_timbre = 0.75;
- break;
- case duty_third_down:
- note_timbre = 0.5;
- if ((envelope_index % 5) == 0)
- note_timbre = 0.75;
- break;
- case duty_fifth_third_down:
- note_timbre = 0.5;
- if ((envelope_index % 5) == 0)
- note_timbre = 0.75;
- if ((envelope_index % 3) == 0)
- note_timbre = 0.25;
- break;
+ // case duty_fifth_down:
+ // note_timbre = 0.5;
+ // if ((envelope_index % 3) == 0)
+ // note_timbre = 0.75;
+ // break;
+ // case duty_fourth_down:
+ // note_timbre = 0.0;
+ // if ((envelope_index % 12) == 0)
+ // note_timbre = 0.75;
+ // if (((envelope_index % 12) % 4) != 1)
+ // note_timbre = 0.75;
+ // break;
+ // case duty_third_down:
+ // note_timbre = 0.5;
+ // if ((envelope_index % 5) == 0)
+ // note_timbre = 0.75;
+ // break;
+ // case duty_fifth_third_down:
+ // note_timbre = 0.5;
+ // if ((envelope_index % 5) == 0)
+ // note_timbre = 0.75;
+ // if ((envelope_index % 3) == 0)
+ // note_timbre = 0.25;
+ // break;
default:
break;