diff options
| author | Tilka <tilkax@gmail.com> | 2023-12-21 17:46:28 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-21 17:46:28 +0000 |
| commit | 8d4575cfd821e23dc5d1b7479fde362a76177df4 (patch) | |
| tree | 251559b45336ae7a14c778dba34315f2bd30f9c9 /Source/Core/VideoCommon/VideoBackendBase.cpp | |
| parent | f7b655e5da3edfa7a83c510f92c364b8f4c174e5 (diff) | |
| parent | f97b2d472acdc8f69427f184fa8fc35a08f231e6 (diff) | |
Merge pull request #12454 from lioncash/proc
VideoCommon/CommandProcessor: Pass system instance through constructor
Diffstat (limited to 'Source/Core/VideoCommon/VideoBackendBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoBackendBase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VideoBackendBase.cpp b/Source/Core/VideoCommon/VideoBackendBase.cpp index b34e8d8c02..ef39216167 100644 --- a/Source/Core/VideoCommon/VideoBackendBase.cpp +++ b/Source/Core/VideoCommon/VideoBackendBase.cpp @@ -378,7 +378,7 @@ bool VideoBackendBase::InitializeShared(std::unique_ptr<AbstractGfx> gfx, auto& system = Core::System::GetInstance(); auto& command_processor = system.GetCommandProcessor(); - command_processor.Init(system); + command_processor.Init(); system.GetFifo().Init(); system.GetPixelEngine().Init(system); BPInit(); |
