Settings cleanup

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

View file

@ -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;
}
}