From: <ge...@us...> - 2003-03-13 17:28:37
|
Update of /cvsroot/jsynthlib/JSynthLib/synthdrivers/YamahaTX7 In directory sc8-pr-cvs1:/tmp/cvs-serv24662/YamahaTX7 Modified Files: YamahaTX7VoiceBankDriver.java Log Message: Testing the syncmail options. Index: YamahaTX7VoiceBankDriver.java =================================================================== RCS file: /cvsroot/jsynthlib/JSynthLib/synthdrivers/YamahaTX7/YamahaTX7VoiceBankDriver.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** YamahaTX7VoiceBankDriver.java 2 Mar 2003 22:00:23 -0000 1.1 --- YamahaTX7VoiceBankDriver.java 13 Mar 2003 17:28:01 -0000 1.2 *************** *** 469,473 **** ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p); --- 469,473 ---- ! Patch p = new Patch(getDeviceNum(),sysex); // single sysex PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p); *************** *** 488,493 **** sysex[trimSize-1]=(byte)0xF7; ! Patch v = new Patch(TX7Constants.INIT_VOICE); ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); for (int i=0;i<numPatches;i++) --- 488,493 ---- sysex[trimSize-1]=(byte)0xF7; ! Patch v = new Patch(getDeviceNum(),TX7Constants.INIT_VOICE); // single sysex ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); // bank sysex for (int i=0;i<numPatches;i++) |