Settings cleanup

This commit is contained in:
Andy Adshead 2019-01-27 15:50:57 +00:00
commit 4839e48e49

View file

@ -6,9 +6,10 @@ namespace Ryujinx.Profiler
{ {
public class ProfilerSettings public class ProfilerSettings
{ {
public bool Enabled = true; // Default settings for profiler
public bool FileDumpEnabled = false; public bool Enabled = false;
public string DumpLocation = ""; public bool FileDumpEnabled = false;
public float UpdateRate = 0.1f; public string DumpLocation = "";
public float UpdateRate = 0.1f;
} }
} }