GUI: add mobile mixer

This commit is contained in:
tildearrow 2023-01-07 16:26:36 -05:00
parent 9e9b0e8e75
commit 4b85ec433b
4 changed files with 21 additions and 1 deletions

View file

@ -449,6 +449,10 @@ void FurnaceGUI::drawMobileControls() {
mobScene=GUI_SCENE_CHIPS;
}
ImGui::TableNextColumn();
if (ImGui::Button("Mixer",buttonSize)) {
mobScene=GUI_SCENE_MIXER;
}
ImGui::TableNextColumn();
if (ImGui::Button("Other",buttonSize)) {
mobScene=GUI_SCENE_OTHER;
}
@ -521,6 +525,9 @@ void FurnaceGUI::drawMobileControls() {
case GUI_SCENE_CHIPS:
ImGui::Text("Chips here...");
break;
case GUI_SCENE_MIXER:
ImGui::Text("What the hell...");
break;
case GUI_SCENE_OTHER: {
if (ImGui::Button("Osc")) {
oscOpen=!oscOpen;