mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-16 12:58:33 +02:00
Merge pull request #13190 from tygyh/Move-to-inner-scope-DolphinQT
DolphinQT: Move variables to inner scope
This commit is contained in:
@ -567,8 +567,8 @@ void CodeWidget::StepOut()
|
||||
clock::time_point timeout = clock::now() + std::chrono::seconds(5);
|
||||
|
||||
auto& power_pc = m_system.GetPowerPC();
|
||||
auto& ppc_state = power_pc.GetPPCState();
|
||||
{
|
||||
auto& ppc_state = power_pc.GetPPCState();
|
||||
Core::CPUThreadGuard guard(m_system);
|
||||
|
||||
PowerPC::CoreMode old_mode = power_pc.GetMode();
|
||||
|
Reference in New Issue
Block a user