-
Bug
-
Resolution: Fixed
-
P4
-
1.4.1
-
b44
-
generic
-
generic
Name: vtR10009 Date: 12/08/2003
Java Sound spec states for method MidiChannel.programChange():
"Since banks are changed by way of control changes, you can
verify the current bank with the following statement:
int bank = (getController(0) * 127)
+ getController(32);"
This is misprint since Controller(0) denotes most significant 7-bit value
of 14-bit value and this example should look like this:
int bank = (getController(0) * 128)
+ getController(32);
This bug may mislead the users.
======================================================================