mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 04:38:49 +00:00
VideoCommon/CommandProcessor: Refactor to class, move to Core::System.
This commit is contained in:
parent
44f8b8c100
commit
6941d2e7e6
11 changed files with 271 additions and 198 deletions
|
@ -316,7 +316,9 @@ void VideoBackendBase::InitializeShared()
|
|||
// do not initialize again for the config window
|
||||
m_initialized = true;
|
||||
|
||||
CommandProcessor::Init();
|
||||
auto& system = Core::System::GetInstance();
|
||||
auto& command_processor = system.GetCommandProcessor();
|
||||
command_processor.Init(system);
|
||||
Fifo::Init();
|
||||
PixelEngine::Init();
|
||||
BPInit();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue