From 37ddd478d15a8a78ebb7352118dbff9e540d8f02 Mon Sep 17 00:00:00 2001 From: Coxxs <58-coxxs@users.noreply.git.ryujinx.app> Date: Wed, 12 Nov 2025 00:51:47 +0800 Subject: [PATCH] gdb: Fix GetAttributeFlags --- src/Ryujinx.HLE/Debugger/Debugger.Rcmd.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx.HLE/Debugger/Debugger.Rcmd.cs b/src/Ryujinx.HLE/Debugger/Debugger.Rcmd.cs index b6e2031d5..0fb70c6b0 100644 --- a/src/Ryujinx.HLE/Debugger/Debugger.Rcmd.cs +++ b/src/Ryujinx.HLE/Debugger/Debugger.Rcmd.cs @@ -303,7 +303,7 @@ namespace Ryujinx.HLE.Debugger 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 device = info.Attribute.HasFlag(MemoryAttribute.DeviceMapped) ? 'D' : '-'; char uncached = info.Attribute.HasFlag(MemoryAttribute.Uncached) ? 'U' : '-';