From f8e247b961fedf5991e52c224fc95931b86f9430 Mon Sep 17 00:00:00 2001 From: chaoticgd <43898262+chaoticgd@users.noreply.github.com> Date: Wed, 6 Nov 2024 21:04:30 +0000 Subject: [PATCH] Debugger: Fix loading symbols from ELF files other than the boot ELF --- pcsx2/DebugTools/SymbolImporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/DebugTools/SymbolImporter.cpp b/pcsx2/DebugTools/SymbolImporter.cpp index 129e47d730e72..4f9388c6d34f9 100644 --- a/pcsx2/DebugTools/SymbolImporter.cpp +++ b/pcsx2/DebugTools/SymbolImporter.cpp @@ -356,7 +356,7 @@ void SymbolImporter::ImportSymbols( continue; } - ccc::Result>> symbol_tables = elf.get_all_symbol_tables(); + ccc::Result>> symbol_tables = (*symbol_file)->get_all_symbol_tables(); if (!symbol_tables.success()) { ccc::report_error(symbol_tables.error());