summaryrefslogtreecommitdiffstats
path: root/src/osd/modules/debugger/debugimgui.cpp
diff options
context:
space:
mode:
author mahlemiut <bsr@xnet.co.nz>2016-12-04 19:43:27 +1300
committer mahlemiut <bsr@xnet.co.nz>2016-12-04 19:43:27 +1300
commit844d4cbe459c09f45a221601c4b8d9630f60ae2d (patch)
treef8f99197d5eb11c227719c7956b8f98496817a12 /src/osd/modules/debugger/debugimgui.cpp
parenteb22bd45f1b6529fe54b631acf7d3db799a370a2 (diff)
debugimgui: lighten combo box list so that it's easier to read (nw)
Diffstat (limited to 'src/osd/modules/debugger/debugimgui.cpp')
-rw-r--r--src/osd/modules/debugger/debugimgui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osd/modules/debugger/debugimgui.cpp b/src/osd/modules/debugger/debugimgui.cpp
index def4d06b1b8..de459240e85 100644
--- a/src/osd/modules/debugger/debugimgui.cpp
+++ b/src/osd/modules/debugger/debugimgui.cpp
@@ -1378,7 +1378,7 @@ void debug_imgui::update()
ImGui::PushStyleColor(ImGuiCol_ScrollbarGrabHovered,ImVec4(0.7f,0.7f,0.7f,0.8f));
ImGui::PushStyleColor(ImGuiCol_ScrollbarGrabActive,ImVec4(0.9f,0.9f,0.9f,0.8f));
ImGui::PushStyleColor(ImGuiCol_Border,ImVec4(0.7f,0.7f,0.7f,0.8f));
-
+ ImGui::PushStyleColor(ImGuiCol_ComboBg,ImVec4(0.4f,0.4f,0.4f,0.9f));
m_text_size = ImGui::CalcTextSize("A"); // hopefully you're using a monospaced font...
draw_console(); // We'll always have a console window
@@ -1420,7 +1420,7 @@ void debug_imgui::update()
global_free(to_delete);
}
- ImGui::PopStyleColor(12);
+ ImGui::PopStyleColor(13);
}
void debug_imgui::init_debugger(running_machine &machine)