aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/nvflinger/buffer_queue.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-11-06 10:05:50 -0500
committerGitHub <noreply@github.com>2019-11-06 10:05:50 -0500
commitc1a3d1989775b94617ba05b1b9b15046b3febd81 (patch)
tree1d0e5b14bc8b8d983c27ad5257f27a9b3b2c5eb9 /src/core/hle/service/nvflinger/buffer_queue.cpp
parent654b77d2ec372bd986d472da7491d0156d0af52e (diff)
parentece5287843403da0bdaeccef872f771fac61967a (diff)
Merge pull request #3062 from bunnei/event-improve
kernel: Improve events
Diffstat (limited to 'src/core/hle/service/nvflinger/buffer_queue.cpp')
-rw-r--r--src/core/hle/service/nvflinger/buffer_queue.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/service/nvflinger/buffer_queue.cpp b/src/core/hle/service/nvflinger/buffer_queue.cpp
index 55b68eb0c..1af11e80c 100644
--- a/src/core/hle/service/nvflinger/buffer_queue.cpp
+++ b/src/core/hle/service/nvflinger/buffer_queue.cpp
@@ -16,8 +16,7 @@ namespace Service::NVFlinger {
BufferQueue::BufferQueue(Kernel::KernelCore& kernel, u32 id, u64 layer_id)
: id(id), layer_id(layer_id) {
- buffer_wait_event = Kernel::WritableEvent::CreateEventPair(kernel, Kernel::ResetType::Manual,
- "BufferQueue NativeHandle");
+ buffer_wait_event = Kernel::WritableEvent::CreateEventPair(kernel, "BufferQueue NativeHandle");
}
BufferQueue::~BufferQueue() = default;