Debugger: Add settings to control the analysis passes

This commit is contained in:
chaoticgd
2024-10-18 13:57:05 -04:00
committed by Ty
parent 0fd7e1d7c2
commit 2c3abe33d5
28 changed files with 1749 additions and 134 deletions
+4 -4
View File
@@ -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