summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-01-06 06:09:57 +0100
committerGitHub <noreply@github.com>2020-01-06 06:09:57 +0100
commit89fc75d76993d294ee106402bc78becc95d0bb38 (patch)
tree5efd323f3848e1203a72dc69f52f0cd02776ac48 /src/core/hle/service
parentMerge pull request #3264 from ReinUsesLisp/vk-descriptor-pool (diff)
parentvideo_core: Block in WaitFence. (diff)
downloadyuzu-89fc75d76993d294ee106402bc78becc95d0bb38.tar
yuzu-89fc75d76993d294ee106402bc78becc95d0bb38.tar.gz
yuzu-89fc75d76993d294ee106402bc78becc95d0bb38.tar.bz2
yuzu-89fc75d76993d294ee106402bc78becc95d0bb38.tar.lz
yuzu-89fc75d76993d294ee106402bc78becc95d0bb38.tar.xz
yuzu-89fc75d76993d294ee106402bc78becc95d0bb38.tar.zst
yuzu-89fc75d76993d294ee106402bc78becc95d0bb38.zip
Diffstat (limited to 'src/core/hle/service')
-rw-r--r--src/core/hle/service/nvflinger/nvflinger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvflinger/nvflinger.cpp b/src/core/hle/service/nvflinger/nvflinger.cpp
index 52623cf89..9810d2c64 100644
--- a/src/core/hle/service/nvflinger/nvflinger.cpp
+++ b/src/core/hle/service/nvflinger/nvflinger.cpp
@@ -192,7 +192,7 @@ void NVFlinger::Compose() {
const auto& igbp_buffer = buffer->get().igbp_buffer;
- const auto& gpu = system.GPU();
+ auto& gpu = system.GPU();
const auto& multi_fence = buffer->get().multi_fence;
for (u32 fence_id = 0; fence_id < multi_fence.num_fences; fence_id++) {
const auto& fence = multi_fence.fences[fence_id];