bugs like removing debug prints

This commit is contained in:
Gordon JC Pearce 2025-12-20 00:06:26 +00:00
parent 66a17b67c4
commit 9710ea1333
1 changed files with 0 additions and 2 deletions

View File

@ -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;