ImGuiManager: Split OSD and debug window fonts

Fixes the latter not fitting on screen anymore.
This commit is contained in:
Stenzek
2024-09-02 00:27:48 +10:00
parent 0ba068e843
commit 51cfea49fe
5 changed files with 29 additions and 16 deletions

View File

@ -202,9 +202,8 @@ static std::vector<BackgroundProgressDialogData> s_background_progress_dialogs;
static std::mutex s_background_progress_lock;
} // namespace ImGuiFullscreen
void ImGuiFullscreen::SetFonts(ImFont* standard_font, ImFont* medium_font, ImFont* large_font)
void ImGuiFullscreen::SetFonts(ImFont* medium_font, ImFont* large_font)
{
g_standard_font = standard_font;
g_medium_font = medium_font;
g_large_font = large_font;
}