release 0.6pre0
This commit is contained in:
parent
4b436ef1fc
commit
f7566455c2
36 changed files with 366 additions and 142 deletions
|
|
@ -192,7 +192,8 @@ enum FurnaceGUIFileDialogs {
|
|||
GUI_FILE_EXPORT_VGM,
|
||||
GUI_FILE_EXPORT_ROM,
|
||||
GUI_FILE_LOAD_MAIN_FONT,
|
||||
GUI_FILE_LOAD_PAT_FONT
|
||||
GUI_FILE_LOAD_PAT_FONT,
|
||||
GUI_FILE_FIND_KONTAKT
|
||||
};
|
||||
|
||||
enum FurnaceGUIWarnings {
|
||||
|
|
@ -202,7 +203,8 @@ enum FurnaceGUIWarnings {
|
|||
GUI_WARN_OPEN_BACKUP,
|
||||
GUI_WARN_OPEN_DROP,
|
||||
GUI_WARN_RESET_LAYOUT,
|
||||
GUI_WARN_GENERIC
|
||||
GUI_WARN_GENERIC,
|
||||
GUI_WARN_KONTAKT
|
||||
};
|
||||
|
||||
enum FurnaceGUIFMAlgs {
|
||||
|
|
@ -728,6 +730,7 @@ class FurnaceGUI {
|
|||
int loadJapanese;
|
||||
int fmLayout;
|
||||
int susPosition;
|
||||
int seriousMode;
|
||||
unsigned int maxUndoSteps;
|
||||
String mainFontPath;
|
||||
String patFontPath;
|
||||
|
|
@ -782,6 +785,7 @@ class FurnaceGUI {
|
|||
loadJapanese(0),
|
||||
fmLayout(0),
|
||||
susPosition(0),
|
||||
seriousMode(0),
|
||||
maxUndoSteps(100),
|
||||
mainFontPath(""),
|
||||
patFontPath(""),
|
||||
|
|
@ -793,7 +797,7 @@ class FurnaceGUI {
|
|||
char finalLayoutPath[4096];
|
||||
|
||||
int curIns, curWave, curSample, curOctave, oldRow, oldOrder, oldOrder1, editStep, exportLoops, soloChan, soloTimeout, orderEditMode, orderCursor;
|
||||
int loopOrder, loopRow, loopEnd, isClipping, extraChannelButtons, patNameTarget, newSongCategory;
|
||||
int loopOrder, loopRow, loopEnd, isClipping, curKStage, extraChannelButtons, patNameTarget, newSongCategory;
|
||||
bool editControlsOpen, ordersOpen, insListOpen, songInfoOpen, patternOpen, insEditOpen;
|
||||
bool waveListOpen, waveEditOpen, sampleListOpen, sampleEditOpen, aboutOpen, settingsOpen;
|
||||
bool mixerOpen, debugOpen, inspectorOpen, oscOpen, volMeterOpen, statsOpen, compatFlagsOpen;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue