Add debugger color scheme choice.

Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
This commit is contained in:
Andrea Odetti 2021-03-20 19:39:25 +00:00
parent 7025bcd457
commit a583fd75f3

View file

@ -246,6 +246,15 @@ namespace sa2
ImGui::EndTabItem();
}
if (ImGui::BeginTabItem("Debugger"))
{
if (ImGui::RadioButton("Color", g_iColorScheme == SCHEME_COLOR)) { g_iColorScheme = SCHEME_COLOR; } ImGui::SameLine();
if (ImGui::RadioButton("Mono", g_iColorScheme == SCHEME_MONO)) { g_iColorScheme = SCHEME_MONO; } ImGui::SameLine();
if (ImGui::RadioButton("BW", g_iColorScheme == SCHEME_BW)) { g_iColorScheme = SCHEME_BW; }
ImGui::EndTabItem();
}
ImGui::EndTabBar();
}