Skip to content

Commit

Permalink
Debugger: Fix loading symbols from ELF files other than the boot ELF
Browse files Browse the repository at this point in the history
  • Loading branch information
chaoticgd committed Nov 6, 2024
1 parent 4dafee1 commit f8e247b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcsx2/DebugTools/SymbolImporter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ void SymbolImporter::ImportSymbols(
continue;
}

ccc::Result<std::vector<std::unique_ptr<ccc::SymbolTable>>> symbol_tables = elf.get_all_symbol_tables();
ccc::Result<std::vector<std::unique_ptr<ccc::SymbolTable>>> symbol_tables = (*symbol_file)->get_all_symbol_tables();
if (!symbol_tables.success())
{
ccc::report_error(symbol_tables.error());
Expand Down

0 comments on commit f8e247b

Please sign in to comment.