From 59ee8326d98def6461fad55c4a1d26e2844fe3af Mon Sep 17 00:00:00 2001 From: ergo720 <45463469+ergo720@users.noreply.github.com> Date: Mon, 12 Apr 2021 11:46:45 +0200 Subject: [PATCH] Set ImGui overlay to default off + fixed a bug in the overlay settings read from file --- src/common/Settings.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/Settings.cpp b/src/common/Settings.cpp index f61df681f..ef8c85584 100644 --- a/src/common/Settings.cpp +++ b/src/common/Settings.cpp @@ -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 ===========