aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2021-05-30 15:53:02 -0300
committerGitHub <noreply@github.com>2021-05-30 20:53:02 +0200
commit91fdaea39bfceed051ad4df8f2ec954df8d59cc8 (patch)
treee3f9362eca23f0cfe3e07347171a8eca91423434
parentf6fcef483fa5696a36ceb7bb5bd5ce206d76ce60 (diff)
Fix guest stack trace inexistent function names (#2326)
-rw-r--r--Ryujinx.HLE/HOS/Kernel/Process/HleProcessDebugger.cs11
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;