GUI: move speed settings to a separate window

This commit is contained in:
tildearrow 2023-02-04 17:01:32 -05:00
parent 8a10b2ed6e
commit 9c673d6e71
7 changed files with 198 additions and 125 deletions

View file

@ -193,6 +193,9 @@ void FurnaceGUI::doAction(int what) {
case GUI_ACTION_WINDOW_SONG_INFO:
nextWindow=GUI_WINDOW_SONG_INFO;
break;
case GUI_ACTION_WINDOW_SPEED:
nextWindow=GUI_WINDOW_SPEED;
break;
case GUI_ACTION_WINDOW_PATTERN:
nextWindow=GUI_WINDOW_PATTERN;
break;
@ -274,6 +277,9 @@ void FurnaceGUI::doAction(int what) {
case GUI_WINDOW_SONG_INFO:
songInfoOpen=false;
break;
case GUI_WINDOW_SPEED:
speedOpen=false;
break;
case GUI_WINDOW_ORDERS:
ordersOpen=false;
break;