GUI: add compat flags button to mobile UI

This commit is contained in:
tildearrow 2022-12-28 15:15:19 -05:00
parent 8e4fda542a
commit 735030b026
2 changed files with 4 additions and 0 deletions

View File

@ -537,6 +537,9 @@ void FurnaceGUI::drawMobileControls() {
if (ImGui::Button("Stats")) { if (ImGui::Button("Stats")) {
statsOpen=!statsOpen; statsOpen=!statsOpen;
} }
if (ImGui::Button("Compat Flags")) {
compatFlagsOpen=!compatFlagsOpen;
}
ImGui::Separator(); ImGui::Separator();

View File

@ -3879,6 +3879,7 @@ bool FurnaceGUI::loop() {
drawSettings(); drawSettings();
drawDebug(); drawDebug();
drawLog(); drawLog();
drawCompatFlags();
drawStats(); drawStats();
} else { } else {
globalWinFlags=0; globalWinFlags=0;