bugs like removing debug prints
This commit is contained in:
parent
66a17b67c4
commit
9710ea1333
|
|
@ -34,8 +34,6 @@ void Module::run(Voice* voice) {
|
||||||
r = decayTable[patchRam.env_r]; // release time coeff looked up in table
|
r = decayTable[patchRam.env_r]; // release time coeff looked up in table
|
||||||
s = patchRam.env_s << 7; // scale 0x00-0x7f to 0x0000-0x3f80
|
s = patchRam.env_s << 7; // scale 0x00-0x7f to 0x0000-0x3f80
|
||||||
|
|
||||||
printf("%04x %04x %04x %04x\n", a, d, s, r);
|
|
||||||
|
|
||||||
square = (patchRam.switch1 & 0x08) ? 0.63 : 0;
|
square = (patchRam.switch1 & 0x08) ? 0.63 : 0;
|
||||||
saw = (patchRam.switch1 & 0x10) ? 0.8 : 0;
|
saw = (patchRam.switch1 & 0x10) ? 0.8 : 0;
|
||||||
sub = patchRam.sub / 127.0f;
|
sub = patchRam.sub / 127.0f;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue