mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-23 04:55:13 +00:00
fix build
This commit is contained in:
parent
a4d8604260
commit
9d02afe0eb
1 changed files with 8 additions and 2 deletions
|
@ -3822,8 +3822,10 @@ bool FurnaceGUI::loop() {
|
|||
curWindow=GUI_WINDOW_PATTERN;
|
||||
drawPattern();
|
||||
drawPiano();
|
||||
drawFindReplace();
|
||||
drawMobileOrderSel();
|
||||
|
||||
globalWinFlags=0;
|
||||
drawFindReplace();
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -5150,7 +5152,11 @@ bool FurnaceGUI::init() {
|
|||
volMeterOpen=e->getConfBool("volMeterOpen",true);
|
||||
statsOpen=e->getConfBool("statsOpen",false);
|
||||
compatFlagsOpen=e->getConfBool("compatFlagsOpen",false);
|
||||
pianoOpen=e->getConfBool("pianoOpen",IS_MOBILE?true:false);
|
||||
#ifdef IS_MOBILE
|
||||
pianoOpen=e->getConfBool("pianoOpen",true);
|
||||
#else
|
||||
pianoOpen=e->getConfBool("pianoOpen",false);
|
||||
#endif
|
||||
notesOpen=e->getConfBool("notesOpen",false);
|
||||
channelsOpen=e->getConfBool("channelsOpen",false);
|
||||
patManagerOpen=e->getConfBool("patManagerOpen",false);
|
||||
|
|
Loading…
Reference in a new issue