Browse Source

Fix noisemaker preset version

tags/2018-04-16
falkTX 10 years ago
parent
commit
61131a97c1
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      ports/tal-noisemaker/source/TalCore.cpp

+ 3
- 3
ports/tal-noisemaker/source/TalCore.cpp View File

@@ -661,7 +661,7 @@ void TalCore::getStateInformation (MemoryBlock& destData)
// header
XmlElement tal("tal");
tal.setAttribute ("curprogram", curProgram);
tal.setAttribute ("version", 1.6);
tal.setAttribute ("version", 1.7);
// programs
XmlElement *programList = new XmlElement ("programs");
@@ -687,7 +687,7 @@ void TalCore::getCurrentProgramStateInformation (MemoryBlock& destData)
// header
XmlElement tal("tal");
tal.setAttribute ("curprogram", curProgram);
tal.setAttribute ("version", 1.6);
tal.setAttribute ("version", 1.7);
// programs
XmlElement *programList = new XmlElement ("programs");
@@ -1057,7 +1057,7 @@ String TalCore::getStateInformationString ()
// header
XmlElement tal("tal");
tal.setAttribute ("curprogram", curProgram);
tal.setAttribute ("version", 1.6);
tal.setAttribute ("version", 1.7);
// programs
XmlElement *programList = new XmlElement ("programs");


Loading…
Cancel
Save