aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Debugger/Profiler/Settings.cs
diff options
context:
space:
mode:
authorMary <me@thog.eu>2020-08-30 19:06:05 +0200
committerGitHub <noreply@github.com>2020-08-30 19:06:05 +0200
commit4f3ae6f62ca5858c2b74eba5a15bad5dff580349 (patch)
tree1ab0427f411d530b253abc73bb6ef97b64a3a6d6 /Ryujinx.Debugger/Profiler/Settings.cs
parentb9398f1f3a13612a0bc3e64205cdb7eca3f48d4d (diff)
Remove the Ryujinx.Debugger project (#1506)
This project wasn't really used by anyone and isn't worth mantaining. This commit remove the profiler entirely from Ryujinx and remove the associated CI tasks.
Diffstat (limited to 'Ryujinx.Debugger/Profiler/Settings.cs')
-rw-r--r--Ryujinx.Debugger/Profiler/Settings.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/Ryujinx.Debugger/Profiler/Settings.cs b/Ryujinx.Debugger/Profiler/Settings.cs
deleted file mode 100644
index 52aa0d84..00000000
--- a/Ryujinx.Debugger/Profiler/Settings.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-namespace Ryujinx.Debugger.Profiler
-{
- public class ProfilerSettings
- {
- // Default settings for profiler
- public bool Enabled { get; set; } = false;
- public bool FileDumpEnabled { get; set; } = false;
- public string DumpLocation { get; set; } = "";
- public float UpdateRate { get; set; } = 0.1f;
- public int MaxLevel { get; set; } = 0;
- public int MaxFlags { get; set; } = 1000;
-
- // 19531225 = 5 seconds in ticks on most pc's.
- // It should get set on boot to the time specified in config
- public long History { get; set; } = 19531225;
- }
-}