aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Common/Configuration/GraphicsDebugLevel.cs')
-rw-r--r--Ryujinx.Common/Configuration/GraphicsDebugLevel.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs b/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs
deleted file mode 100644
index ad12302a..00000000
--- a/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using Ryujinx.Common.Utilities;
-using System.Text.Json.Serialization;
-
-namespace Ryujinx.Common.Configuration
-{
- [JsonConverter(typeof(TypedStringEnumConverter<GraphicsDebugLevel>))]
- public enum GraphicsDebugLevel
- {
- None,
- Error,
- Slowdowns,
- All
- }
-}