diff --git a/Ryujinx.HLE/OsHle/Process.cs b/Ryujinx.HLE/OsHle/Process.cs index 2fb48974f..439dd5f3d 100644 --- a/Ryujinx.HLE/OsHle/Process.cs +++ b/Ryujinx.HLE/OsHle/Process.cs @@ -247,7 +247,7 @@ namespace Ryujinx.HLE.OsHle void AppendTrace(long Position) { - Executable Exe = GetNsoExecutable(Position); + Executable Exe = GetExecutable(Position); if (Exe == null) { @@ -321,7 +321,7 @@ namespace Ryujinx.HLE.OsHle return false; } - private Executable GetNsoExecutable(long Position) + private Executable GetExecutable(long Position) { string Name = string.Empty;