summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2019-01-07 23:32:02 -0500
committerGravatar bunnei2019-03-06 21:09:09 -0500
commit4483089d704cd4913a748d2198359cc0cf7b32c5 (patch)
treeeed7cefc13f9c5bfc169f37e0499d6d79a1884c7 /src/core/core.cpp
parentsettings: Add new graphics setting for use_asynchronous_gpu_emulation. (diff)
downloadyuzu-4483089d704cd4913a748d2198359cc0cf7b32c5.tar.gz
yuzu-4483089d704cd4913a748d2198359cc0cf7b32c5.tar.xz
yuzu-4483089d704cd4913a748d2198359cc0cf7b32c5.zip
gpu: Refactor to take RendererBase instead of RasterizerInterface.
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 11094a87a..9e5d167c3 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -131,7 +131,7 @@ struct System::Impl {
131 131
132 is_powered_on = true; 132 is_powered_on = true;
133 133
134 gpu_core = std::make_unique<Tegra::GPU>(system, renderer->Rasterizer()); 134 gpu_core = std::make_unique<Tegra::GPU>(system, *renderer);
135 135
136 cpu_core_manager.Initialize(system); 136 cpu_core_manager.Initialize(system);
137 137