diff options
author | bunnei <bunneidev@gmail.com> | 2019-01-08 05:32:02 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2019-03-07 03:09:09 +0100 |
commit | 4483089d704cd4913a748d2198359cc0cf7b32c5 (patch) | |
tree | eed7cefc13f9c5bfc169f37e0499d6d79a1884c7 /src/core/core.cpp | |
parent | settings: Add new graphics setting for use_asynchronous_gpu_emulation. (diff) | |
download | yuzu-4483089d704cd4913a748d2198359cc0cf7b32c5.tar yuzu-4483089d704cd4913a748d2198359cc0cf7b32c5.tar.gz yuzu-4483089d704cd4913a748d2198359cc0cf7b32c5.tar.bz2 yuzu-4483089d704cd4913a748d2198359cc0cf7b32c5.tar.lz yuzu-4483089d704cd4913a748d2198359cc0cf7b32c5.tar.xz yuzu-4483089d704cd4913a748d2198359cc0cf7b32c5.tar.zst yuzu-4483089d704cd4913a748d2198359cc0cf7b32c5.zip |
Diffstat (limited to '')
-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 11094a87a..9e5d167c3 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -131,7 +131,7 @@ struct System::Impl { is_powered_on = true; - gpu_core = std::make_unique<Tegra::GPU>(system, renderer->Rasterizer()); + gpu_core = std::make_unique<Tegra::GPU>(system, *renderer); cpu_core_manager.Initialize(system); |