forked from Mirror/Ryujinx
13 lines
315 B
C#
13 lines
315 B
C#
using Ryujinx.Common.Utilities;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Common.Configuration
|
|
{
|
|
[JsonConverter(typeof(TypedStringEnumConverter<MemoryManagerMode>))]
|
|
public enum MemoryManagerMode : byte
|
|
{
|
|
SoftwarePageTable,
|
|
HostMapped,
|
|
HostMappedUnsafe
|
|
}
|
|
}
|