diff options
author | gdkchan <gab.dark.100@gmail.com> | 2021-05-30 15:53:02 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-30 20:53:02 +0200 |
commit | 91fdaea39bfceed051ad4df8f2ec954df8d59cc8 (patch) | |
tree | e3f9362eca23f0cfe3e07347171a8eca91423434 | |
parent | f6fcef483fa5696a36ceb7bb5bd5ce206d76ce60 (diff) |
Fix guest stack trace inexistent function names (#2326)
-rw-r--r-- | Ryujinx.HLE/HOS/Kernel/Process/HleProcessDebugger.cs | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Ryujinx.HLE/HOS/Kernel/Process/HleProcessDebugger.cs b/Ryujinx.HLE/HOS/Kernel/Process/HleProcessDebugger.cs index 627049bc..e0cd4fbf 100644 --- a/Ryujinx.HLE/HOS/Kernel/Process/HleProcessDebugger.cs +++ b/Ryujinx.HLE/HOS/Kernel/Process/HleProcessDebugger.cs @@ -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; |