ImGuiManager: Fix changing global scale through FSUI

This commit is contained in:
Stenzek
2023-09-02 19:40:23 +10:00
parent bcda86d782
commit 5480e42cd1
4 changed files with 45 additions and 13 deletions

View File

@ -21,8 +21,11 @@ void SetFontRange(const u16* range);
/// Changes the global scale.
void SetGlobalScale(float global_scale);
/// Changes whether OSD messages are silently dropped.
void SetShowOSDMessages(bool enable);
/// Initializes ImGui, creates fonts, etc.
bool Initialize(float global_scale);
bool Initialize(float global_scale, bool show_osd_messages);
/// Frees all ImGui resources.
void Shutdown();