mirror of
https://github.com/ARMSX2/ARMSX2.git
synced 2026-08-24 16:50:16 -07:00
Debugger: Add settings to control the analysis passes
This commit is contained in:
@@ -894,9 +894,9 @@ SymbolGuardian& R5900DebugInterface::GetSymbolGuardian() const
|
||||
return R5900SymbolGuardian;
|
||||
}
|
||||
|
||||
SymbolImporter& R5900DebugInterface::GetSymbolImporter() const
|
||||
SymbolImporter* R5900DebugInterface::GetSymbolImporter() const
|
||||
{
|
||||
return R5900SymbolImporter;
|
||||
return &R5900SymbolImporter;
|
||||
}
|
||||
|
||||
std::vector<std::unique_ptr<BiosThread>> R5900DebugInterface::GetThreadList() const
|
||||
@@ -1218,9 +1218,9 @@ SymbolGuardian& R3000DebugInterface::GetSymbolGuardian() const
|
||||
return R3000SymbolGuardian;
|
||||
}
|
||||
|
||||
SymbolImporter& R3000DebugInterface::GetSymbolImporter() const
|
||||
SymbolImporter* R3000DebugInterface::GetSymbolImporter() const
|
||||
{
|
||||
return R3000SymbolImporter;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
std::vector<std::unique_ptr<BiosThread>> R3000DebugInterface::GetThreadList() const
|
||||
|
||||
Reference in New Issue
Block a user