Removed TypedStringEnumConverter; it exists in .NET now.

As per the remark XMLdoc on the type: Get rid of this converter if dotnet supports similar functionality out of the box.
This commit is contained in:
GreemDev
2025-12-23 08:18:10 -06:00
committed by KeatonTheBot
parent fecb02647d
commit b6cd6770ff
22 changed files with 22 additions and 80 deletions
@@ -1,9 +1,8 @@
using Ryujinx.Common.Utilities;
using System.Text.Json.Serialization;
namespace Ryujinx.Common.Configuration
{
[JsonConverter(typeof(TypedStringEnumConverter<GraphicsDebugLevel>))]
[JsonConverter(typeof(JsonStringEnumConverter<GraphicsDebugLevel>))]
public enum GraphicsDebugLevel
{
None,