diff options
author | bunnei <bunneidev@gmail.com> | 2019-03-31 01:08:09 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2019-04-02 03:32:39 +0200 |
commit | 4555b637500daeb26f556113656fc3d242e60872 (patch) | |
tree | 3b79747fa480de5bcfb7e836d75f9a414599246d /src/video_core/gpu_asynch.cpp | |
parent | Merge pull request #2301 from FearlessTobi/remove-amiibo-setting (diff) | |
download | yuzu-4555b637500daeb26f556113656fc3d242e60872.tar yuzu-4555b637500daeb26f556113656fc3d242e60872.tar.gz yuzu-4555b637500daeb26f556113656fc3d242e60872.tar.bz2 yuzu-4555b637500daeb26f556113656fc3d242e60872.tar.lz yuzu-4555b637500daeb26f556113656fc3d242e60872.tar.xz yuzu-4555b637500daeb26f556113656fc3d242e60872.tar.zst yuzu-4555b637500daeb26f556113656fc3d242e60872.zip |
Diffstat (limited to 'src/video_core/gpu_asynch.cpp')
-rw-r--r-- | src/video_core/gpu_asynch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/gpu_asynch.cpp b/src/video_core/gpu_asynch.cpp index 8b355cf7b..db507cf04 100644 --- a/src/video_core/gpu_asynch.cpp +++ b/src/video_core/gpu_asynch.cpp @@ -9,7 +9,7 @@ namespace VideoCommon { GPUAsynch::GPUAsynch(Core::System& system, VideoCore::RendererBase& renderer) - : Tegra::GPU(system, renderer), gpu_thread{renderer, *dma_pusher} {} + : Tegra::GPU(system, renderer), gpu_thread{system, renderer, *dma_pusher} {} GPUAsynch::~GPUAsynch() = default; |