overlay: change active option color to green

This commit is contained in:
sp2xdev
2025-03-28 23:49:12 -07:00
parent 4694b59cec
commit 3c8dc9de32
+1 -1
View File
@@ -2634,7 +2634,7 @@ namespace overlay::windows {
if (option.disabled || definition.disabled) { if (option.disabled || definition.disabled) {
ImGui::TextColored(ImVec4(1.f, 0.4f, 0.f, 1.f), "%s", definition.title.c_str()); ImGui::TextColored(ImVec4(1.f, 0.4f, 0.f, 1.f), "%s", definition.title.c_str());
} else { } else {
ImGui::TextColored(ImVec4(1.f, 0.7f, 0.f, 1.f), "%s", definition.title.c_str()); ImGui::TextColored(ImVec4(0.f, 1.f, 0.f, 1.f), "%s", definition.title.c_str());
} }
} else if (definition.hidden } else if (definition.hidden
|| (!definition.game_name.empty() && definition.game_name != this->games_selected_name)) { || (!definition.game_name.empty() && definition.game_name != this->games_selected_name)) {