mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-02-21 16:21:09 +00:00
As per the remark XMLdoc on the type: Get rid of this converter if dotnet supports similar functionality out of the box.
13 lines
280 B
C#
13 lines
280 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Common.Configuration
|
|
{
|
|
[JsonConverter(typeof(JsonStringEnumConverter<MemoryManagerMode>))]
|
|
public enum MemoryManagerMode : byte
|
|
{
|
|
SoftwarePageTable,
|
|
HostMapped,
|
|
HostMappedUnsafe,
|
|
}
|
|
}
|