GUI: add mobile mixer
This commit is contained in:
parent
9e9b0e8e75
commit
4b85ec433b
4 changed files with 21 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue