#163951 - Ruben - Thu Oct 16, 2008 3:18 pm
Hi all~
So I was trying to optimize my mixer yet again, and saw this:
So... is that true? If so, why do people allow stuff like 0-127 volume ranges (GBA BIOS Synth) and what's the difference it makes?
*highly confused*
So I was trying to optimize my mixer yet again, and saw this:
Code: |
v = 127 (max is 127)
s = 7 (pow(2,7) = 128 which is ~127) (15*v)+(85*v) = 12700 /= pow(2,(s+2)) ~= 25 v = 16 (max is 16) s = 4 (pow(2,4) = 16) (15*v)+(85*v) = 1600 /= pow(2,(s+2)) ~= 25 |
So... is that true? If so, why do people allow stuff like 0-127 volume ranges (GBA BIOS Synth) and what's the difference it makes?
*highly confused*