Set ImGui overlay to default off + fixed a bug in the overlay settings read from file

This commit is contained in:
ergo720 2021-04-12 11:46:45 +02:00
parent 9e9f78ec94
commit 59ee8326d9
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 ===========