mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 09:09:52 -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:
@ -47,7 +47,7 @@ namespace HW
|
||||
DSP::Init(SConfig::GetInstance().bDSPHLE);
|
||||
DVDInterface::Init();
|
||||
GPFifo::Init();
|
||||
CCPU::Init(SConfig::GetInstance().iCPUCore);
|
||||
CPU::Init(SConfig::GetInstance().iCPUCore);
|
||||
SystemTimers::Init();
|
||||
|
||||
if (SConfig::GetInstance().bWii)
|
||||
@ -63,7 +63,7 @@ namespace HW
|
||||
void Shutdown()
|
||||
{
|
||||
SystemTimers::Shutdown();
|
||||
CCPU::Shutdown();
|
||||
CPU::Shutdown();
|
||||
ExpansionInterface::Shutdown();
|
||||
DVDInterface::Shutdown();
|
||||
DSP::Shutdown();
|
||||
|
Reference in New Issue
Block a user