blalbaablabl
This commit is contained in:
parent
ad49ff1571
commit
1373a66e2b
|
@ -2717,8 +2717,8 @@ class FurnaceGUI {
|
||||||
void initTutorial();
|
void initTutorial();
|
||||||
void activateTutorial(FurnaceGUITutorials which);
|
void activateTutorial(FurnaceGUITutorials which);
|
||||||
|
|
||||||
bool loadUserPresets();
|
bool loadUserPresets(bool redundancy=true);
|
||||||
bool saveUserPresets();
|
bool saveUserPresets(bool redundancy=true);
|
||||||
|
|
||||||
void encodeMMLStr(String& target, int* macro, int macroLen, int macroLoop, int macroRel, bool hex=false, bool bit30=false);
|
void encodeMMLStr(String& target, int* macro, int macroLen, int macroLoop, int macroRel, bool hex=false, bool bit30=false);
|
||||||
void decodeMMLStr(String& source, int* macro, unsigned char& macroLen, unsigned char& macroLoop, int macroMin, int macroMax, unsigned char& macroRel, bool bit30=false);
|
void decodeMMLStr(String& source, int* macro, unsigned char& macroLen, unsigned char& macroLoop, int macroMin, int macroMax, unsigned char& macroRel, bool bit30=false);
|
||||||
|
|
|
@ -3121,3 +3121,12 @@ FurnaceGUISysDef::FurnaceGUISysDef(const char* n, std::initializer_list<FurnaceG
|
||||||
definition+=extra;
|
definition+=extra;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// functions for loading/saving user presets
|
||||||
|
bool loadUserPresets(bool redundancy) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool saveUserPresets(bool redundancy) {
|
||||||
|
return true;
|
||||||
|
}
|
Loading…
Reference in a new issue