diff options
Diffstat (limited to 'Ryujinx.Common/Configuration/GraphicsDebugLevel.cs')
-rw-r--r-- | Ryujinx.Common/Configuration/GraphicsDebugLevel.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs b/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs index 556af689..ad12302a 100644 --- a/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs +++ b/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs @@ -1,5 +1,9 @@ +using Ryujinx.Common.Utilities; +using System.Text.Json.Serialization; + namespace Ryujinx.Common.Configuration { + [JsonConverter(typeof(TypedStringEnumConverter<GraphicsDebugLevel>))] public enum GraphicsDebugLevel { None, |