mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-02-19 23:31:07 +00:00
As per the remark XMLdoc on the type: Get rid of this converter if dotnet supports similar functionality out of the box.
14 lines
263 B
C#
14 lines
263 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Common.Configuration
|
|
{
|
|
[JsonConverter(typeof(JsonStringEnumConverter<GraphicsDebugLevel>))]
|
|
public enum GraphicsDebugLevel
|
|
{
|
|
None,
|
|
Error,
|
|
Slowdowns,
|
|
All,
|
|
}
|
|
}
|