summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2019-02-20 21:24:56 -0500
committerGravatar GitHub2019-02-20 21:24:56 -0500
commitae437320c84e8c5fff69e8cec413e63b11f952b6 (patch)
treed7f7f74d87fdaa6dd9ec829086e8c3814ae0506b /src/core/core.cpp
parentFixes Unicode Key File Directories (#2120) (diff)
parentvideo_core: Remove usages of System::GetInstance() within the engines (diff)
downloadyuzu-ae437320c84e8c5fff69e8cec413e63b11f952b6.tar.gz
yuzu-ae437320c84e8c5fff69e8cec413e63b11f952b6.tar.xz
yuzu-ae437320c84e8c5fff69e8cec413e63b11f952b6.zip
Merge pull request #2130 from lioncash/system_engine
video_core: Remove usages of System::GetInstance() within the engines
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r--src/core/core.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index 8aa0932c5..ab7181a05 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -128,7 +128,7 @@ struct System::Impl {
128 return ResultStatus::ErrorVideoCore; 128 return ResultStatus::ErrorVideoCore;
129 } 129 }
130 130
131 gpu_core = std::make_unique<Tegra::GPU>(renderer->Rasterizer()); 131 gpu_core = std::make_unique<Tegra::GPU>(system, renderer->Rasterizer());
132 132
133 cpu_core_manager.Initialize(system); 133 cpu_core_manager.Initialize(system);
134 is_powered_on = true; 134 is_powered_on = true;