summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/vi/vi.cpp
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-11-29 15:14:12 +0100
committerZach Hilman <zachhilman@gmail.com>2018-11-29 15:14:20 +0100
commit170d7078507745fee4c8952aa5888108b2b76b91 (patch)
tree6bc3c4cbbe36518a7e9b8e62a6b4042cb420861e /src/core/hle/service/vi/vi.cpp
parentkernel/event: Reference ReadableEvent from WritableEvent (diff)
downloadyuzu-170d7078507745fee4c8952aa5888108b2b76b91.tar
yuzu-170d7078507745fee4c8952aa5888108b2b76b91.tar.gz
yuzu-170d7078507745fee4c8952aa5888108b2b76b91.tar.bz2
yuzu-170d7078507745fee4c8952aa5888108b2b76b91.tar.lz
yuzu-170d7078507745fee4c8952aa5888108b2b76b91.tar.xz
yuzu-170d7078507745fee4c8952aa5888108b2b76b91.tar.zst
yuzu-170d7078507745fee4c8952aa5888108b2b76b91.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/vi/vi.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp
index 47beaf8f6..717eae36a 100644
--- a/src/core/hle/service/vi/vi.cpp
+++ b/src/core/hle/service/vi/vi.cpp
@@ -548,7 +548,7 @@ private:
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(RESULT_SUCCESS);
},
- buffer_queue->GetWritableBufferWaitEvent(), buffer_queue->GetBufferWaitEvent());
+ buffer_queue->GetWritableBufferWaitEvent());
}
} else if (transaction == TransactionId::RequestBuffer) {
IGBPRequestBufferRequestParcel request{ctx.ReadBuffer()};