mirror of https://github.com/PCSX2/pcsx2.git
Debugger: Fix loading symbols from ELF files other than the boot ELF
This commit is contained in:
parent
4dafee17e0
commit
bea471a0e3
|
@ -356,7 +356,7 @@ void SymbolImporter::ImportSymbols(
|
||||||
continue;
|
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())
|
if (!symbol_tables.success())
|
||||||
{
|
{
|
||||||
ccc::report_error(symbol_tables.error());
|
ccc::report_error(symbol_tables.error());
|
||||||
|
|
Loading…
Reference in New Issue