diff options
author | Lioncash <mathew1800@gmail.com> | 2019-02-16 04:05:17 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-02-16 04:06:23 +0100 |
commit | a8fa5019b51c9ce765124121daac863cfc1365aa (patch) | |
tree | e23b97873c1e6b4fcb34066fccb393d2a1147bb8 /src/core/core.cpp | |
parent | Merge pull request #2123 from lioncash/coretiming-global (diff) | |
download | yuzu-a8fa5019b51c9ce765124121daac863cfc1365aa.tar yuzu-a8fa5019b51c9ce765124121daac863cfc1365aa.tar.gz yuzu-a8fa5019b51c9ce765124121daac863cfc1365aa.tar.bz2 yuzu-a8fa5019b51c9ce765124121daac863cfc1365aa.tar.lz yuzu-a8fa5019b51c9ce765124121daac863cfc1365aa.tar.xz yuzu-a8fa5019b51c9ce765124121daac863cfc1365aa.tar.zst yuzu-a8fa5019b51c9ce765124121daac863cfc1365aa.zip |
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r-- | src/core/core.cpp | 2 |
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 { return ResultStatus::ErrorVideoCore; } - gpu_core = std::make_unique<Tegra::GPU>(renderer->Rasterizer()); + gpu_core = std::make_unique<Tegra::GPU>(system, renderer->Rasterizer()); cpu_core_manager.Initialize(system); is_powered_on = true; |