From 1ee3882afd521a305c82d8ca13d887cbd8e0150f Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sun, 15 Aug 2021 11:56:55 +1000 Subject: [PATCH] HostInterface: Default show status indicators to true --- src/core/host_interface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/host_interface.cpp b/src/core/host_interface.cpp index 592e8398f..1c7dfd97a 100644 --- a/src/core/host_interface.cpp +++ b/src/core/host_interface.cpp @@ -560,7 +560,7 @@ void HostInterface::SetDefaultSettings(SettingsInterface& si) si.SetBoolValue("Display", "ShowVPS", false); si.SetBoolValue("Display", "ShowSpeed", false); si.SetBoolValue("Display", "ShowResolution", false); - si.SetBoolValue("Display", "ShowStatusIndicators", false); + si.SetBoolValue("Display", "ShowStatusIndicators", true); si.SetBoolValue("Display", "Fullscreen", false); si.SetBoolValue("Display", "VSync", Settings::DEFAULT_VSYNC_VALUE); si.SetBoolValue("Display", "DisplayAllFrames", false);