mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 20:28:56 +00:00
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:
parent
514b3e6f55
commit
75ec350dc4
5 changed files with 17 additions and 21 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue