blalbaablabl

This commit is contained in:
tildearrow 2024-03-21 01:13:38 -05:00
parent ad49ff1571
commit 1373a66e2b
2 changed files with 11 additions and 2 deletions

View file

@ -2717,8 +2717,8 @@ class FurnaceGUI {
void initTutorial();
void activateTutorial(FurnaceGUITutorials which);
bool loadUserPresets();
bool saveUserPresets();
bool loadUserPresets(bool redundancy=true);
bool saveUserPresets(bool redundancy=true);
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);

View file

@ -3121,3 +3121,12 @@ FurnaceGUISysDef::FurnaceGUISysDef(const char* n, std::initializer_list<FurnaceG
definition+=extra;
}
}
// functions for loading/saving user presets
bool loadUserPresets(bool redundancy) {
return true;
}
bool saveUserPresets(bool redundancy) {
return true;
}