mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
CPU: Convert CCPU into a namespace
There's not much point to a class with only static member functions.
This commit is contained in:
@ -845,10 +845,7 @@ void CFrame::OnPlay(wxCommandEvent& WXUNUSED (event))
|
||||
// Core is initialized and emulator is running
|
||||
if (UseDebugger)
|
||||
{
|
||||
if (CCPU::IsStepping())
|
||||
CCPU::EnableStepping(false);
|
||||
else
|
||||
CCPU::EnableStepping(true); // Break
|
||||
CPU::EnableStepping(!CPU::IsStepping());
|
||||
|
||||
wxThread::Sleep(20);
|
||||
g_pCodeWindow->JumpToAddress(PC);
|
||||
|
Reference in New Issue
Block a user