Fix Demangle.Parse call in PrintStackTrace
This commit is contained in:
parent
36cb2deb5c
commit
6b5dc3d718
1 changed files with 1 additions and 1 deletions
|
@ -307,7 +307,7 @@ namespace Ryujinx.Core.OsHle
|
|||
}
|
||||
else if (SubName.StartsWith("_Z"))
|
||||
{
|
||||
SubName = Demangle.Parse(SubName.Substring(3));
|
||||
SubName = Demangle.Parse(SubName);
|
||||
}
|
||||
|
||||
Trace.AppendLine(" " + SubName + " (" + GetNsoNameAndAddress(Position) + ")");
|
||||
|
|
Loading…
Add table
Reference in a new issue