summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-02-17 14:00:30 -0500
committerSubv <subv2112@gmail.com>2018-02-17 14:00:30 -0500
commit2662de6e52344e082bc5855ea0e3e791588862c6 (patch)
tree7da7c3e93240e7eddb974a15b1da655846a975ec /src
parent1b64160d835d23141cb150cb1ea9b2ab62b5c835 (diff)
Vi: Mark all fences as NO_FENCE in the DequeueBuffer response parcel.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/vi/vi.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp
index e5f196158..1afd5a4fb 100644
--- a/src/core/hle/service/vi/vi.cpp
+++ b/src/core/hle/service/vi/vi.cpp
@@ -288,8 +288,8 @@ protected:
// TODO(Subv): Find out how this Fence is used.
BufferProducerFence fence = {};
fence.is_valid = 1;
- fence.fences[0].id = 0;
- fence.fences[0].value = 0;
+ for (auto& fence_ : fence.fences)
+ fence_.id = -1;
Write(slot);
Write<u32_le>(1);