Update of /cvsroot/jsynthlib/JSynthLib/synthdrivers/YamahaTX802
In directory sc8-pr-cvs1:/tmp/cvs-serv24978/YamahaTX802
Modified Files:
YamahaTX802VoiceBankDriver.java
Log Message:
Torstens changes from 6.3.03
Index: YamahaTX802VoiceBankDriver.java
===================================================================
RCS file: /cvsroot/jsynthlib/JSynthLib/synthdrivers/YamahaTX802/YamahaTX802VoiceBankDriver.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** YamahaTX802VoiceBankDriver.java 2 Mar 2003 22:00:24 -0000 1.1
--- YamahaTX802VoiceBankDriver.java 11 Mar 2003 23:03:47 -0000 1.2
***************
*** 475,479 ****
! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum());
PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p);
return p;
--- 475,479 ----
! Patch p = new Patch(getDeviceNum(),sysex); // single sysex
PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p);
return p;
***************
*** 493,498 ****
sysex[trimSize-1]=(byte)0xF7;
! Patch v = new Patch(TX802Constants.INIT_VOICE);
! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum());
for (int i=0;i<numPatches;i++)
putPatch(p,v,i);
--- 493,498 ----
sysex[trimSize-1]=(byte)0xF7;
! Patch v = new Patch(getDeviceNum(),TX802Constants.INIT_VOICE); // single sysex
! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); // bank sysex
for (int i=0;i<numPatches;i++)
putPatch(p,v,i);
|