ui: Fix alpha fade out for main menu

This commit is contained in:
Matt Borgerson 2020-03-28 22:09:13 -07:00
parent b04ceb7de2
commit 80940258fe
1 changed files with 1 additions and 1 deletions

View File

@ -472,12 +472,12 @@ void xemu_hud_render(SDL_Window *window)
if (t >= 1.0) {
alpha = 0.0;
}
ImGui::SetNextWindowBgAlpha(alpha);
}
if (alpha > 0.0) {
ImVec4 tc = ImGui::GetStyle().Colors[ImGuiCol_Text];
tc.w = alpha;
ImGui::PushStyleColor(ImGuiCol_Text, tc);
ImGui::SetNextWindowBgAlpha(alpha);
ShowMainMenu();
ImGui::PopStyleColor();
} else {