ImGuiManager: Fix double init of font texture

This commit is contained in:
Connor McLaughlin 2022-02-02 21:03:58 +10:00 committed by refractionpcsx2
parent f1de985304
commit 87aa8333a8
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ void ImGuiManager::UpdateScale()
SetImGuiStyle();
ImGui::GetStyle().ScaleAllSizes(scale);
if (!AddImGuiFonts() || !display->UpdateImGuiFontTexture())
if (!AddImGuiFonts())
pxFailRel("Failed to create ImGui font text");
if (!display->UpdateImGuiFontTexture())