Core/Debugger_SymbolMap: Remove redundant system parameters from interface

The CPU thread guard already allows access to the system instance. We can
remove the system parameter to reduce rendundancy here.
This commit is contained in:
Lioncache 2023-12-18 15:34:15 -05:00
commit 75ec350dc4
5 changed files with 17 additions and 21 deletions

View file

@ -344,7 +344,7 @@ void CodeWidget::UpdateCallstack()
const bool success = [this, &stack] {
Core::CPUThreadGuard guard(m_system);
return Dolphin_Debugger::GetCallstack(m_system, guard, stack);
return Dolphin_Debugger::GetCallstack(guard, stack);
}();
if (!success)