diff --git a/Ryujinx.Profiler/Settings.cs b/Ryujinx.Profiler/Settings.cs index 486cdd29bc..7708514c8b 100644 --- a/Ryujinx.Profiler/Settings.cs +++ b/Ryujinx.Profiler/Settings.cs @@ -6,9 +6,10 @@ namespace Ryujinx.Profiler { public class ProfilerSettings { - public bool Enabled = true; - public bool FileDumpEnabled = false; - public string DumpLocation = ""; - public float UpdateRate = 0.1f; + // Default settings for profiler + public bool Enabled = false; + public bool FileDumpEnabled = false; + public string DumpLocation = ""; + public float UpdateRate = 0.1f; } }