Merge pull request #2192 from ergo720/imgui_off

Set ImGui overlay to default off + fixed a bug in the overlay settings read from file
This commit is contained in:
PatrickvL 2021-04-12 12:08:22 +02:00 committed by GitHub
commit 68b3f0f22b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -531,8 +531,8 @@ bool Settings::LoadConfig()
// ==== Overlay Begin =========
m_overlay.fps = m_si.GetBoolValue(section_overlay, sect_overlay_keys.FPS, true);
m_overlay.hle_lle_stats = m_si.SetBoolValue(section_overlay, sect_overlay_keys.hle_lle_stats, true);
m_overlay.fps = m_si.GetBoolValue(section_overlay, sect_overlay_keys.FPS, false);
m_overlay.hle_lle_stats = m_si.GetBoolValue(section_overlay, sect_overlay_keys.hle_lle_stats, false);
// ==== Overlay End ===========