mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-12-16 12:09:51 +00:00
gdb: Fix GetAttributeFlags
This commit is contained in:
parent
17a575a505
commit
37ddd478d1
@ -303,7 +303,7 @@ namespace Ryujinx.HLE.Debugger
|
|||||||
|
|
||||||
private static string GetAttributeFlags(KMemoryInfo info)
|
private static string GetAttributeFlags(KMemoryInfo info)
|
||||||
{
|
{
|
||||||
char locked = info.Attribute.HasFlag(MemoryAttribute.PermissionLocked) ? 'L' : '-';
|
char locked = info.Attribute.HasFlag(MemoryAttribute.Borrowed) ? 'L' : '-';
|
||||||
char ipc = info.Attribute.HasFlag(MemoryAttribute.IpcMapped) ? 'I' : '-';
|
char ipc = info.Attribute.HasFlag(MemoryAttribute.IpcMapped) ? 'I' : '-';
|
||||||
char device = info.Attribute.HasFlag(MemoryAttribute.DeviceMapped) ? 'D' : '-';
|
char device = info.Attribute.HasFlag(MemoryAttribute.DeviceMapped) ? 'D' : '-';
|
||||||
char uncached = info.Attribute.HasFlag(MemoryAttribute.Uncached) ? 'U' : '-';
|
char uncached = info.Attribute.HasFlag(MemoryAttribute.Uncached) ? 'U' : '-';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user