mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-24 16:30:12 +01:00
Fix guest stack trace inexistent function names (#2326)
This commit is contained in:
parent
f6fcef483f
commit
91fdaea39b
@ -167,17 +167,6 @@ namespace Ryujinx.HLE.HOS.Kernel.Process
|
||||
return true;
|
||||
}
|
||||
|
||||
if (middle + 1 < image.Symbols.Length)
|
||||
{
|
||||
ElfSymbol next = image.Symbols[middle + 1];
|
||||
|
||||
// If our symbol points inbetween two symbols, we can *guess* that it's referring to the first one
|
||||
if (address >= symbol.Value && address < next.Value)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
if (address < symbol.Value)
|
||||
{
|
||||
right = middle - 1;
|
||||
|
Loading…
Reference in New Issue
Block a user