diff options
author | cflip <cflip@cflip.net> | 2022-01-01 11:21:25 -0700 |
---|---|---|
committer | cflip <cflip@cflip.net> | 2022-01-01 11:21:25 -0700 |
commit | a14db50572a008ee4f677ebfbfcddc82dd595401 (patch) | |
tree | 53323ed41b573fcbe58be090c4192f50593a07cd /sequence.h | |
parent | 9ac242c22d86f1a32afe90510b0e2365d01cc5f2 (diff) |
Default carrier frequency to 110Hz
This is easier on the ears when the program starts up
Diffstat (limited to 'sequence.h')
-rw-r--r-- | sequence.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ #pragma once struct StepData { - float carrierFreq = 440.f; + float carrierFreq = 110.f; float modFreq = 0; float modDepth = 1; }; |