mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00: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:
parent
e076de137b
commit
ef1cc2cec4
9 changed files with 70 additions and 68 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue