aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/nvflinger/buffer_queue.cpp
diff options
context:
space:
mode:
authorSebastian Valle <sebastianvalle@uninorte.edu.co>2019-05-19 08:47:59 -0500
committerGitHub <noreply@github.com>2019-05-19 08:47:59 -0500
commit27033de2e56f2666d69e53d990ed5f0f5f3e6ede (patch)
tree0a2fdfed64f9a33269e82d11306ca3df6038efc5 /src/core/hle/service/nvflinger/buffer_queue.cpp
parent30c984dc977ee75b4d528cc2cd6cd0792d250236 (diff)
parenta47aaa7f1ba690196ebde1a6eb543b3f9895f4d9 (diff)
Merge pull request #2486 from lioncash/resetname
core/kernel/object: Rename ResetType enum members for clarity
Diffstat (limited to 'src/core/hle/service/nvflinger/buffer_queue.cpp')
-rw-r--r--src/core/hle/service/nvflinger/buffer_queue.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvflinger/buffer_queue.cpp b/src/core/hle/service/nvflinger/buffer_queue.cpp
index 4d150fc71..5731e815f 100644
--- a/src/core/hle/service/nvflinger/buffer_queue.cpp
+++ b/src/core/hle/service/nvflinger/buffer_queue.cpp
@@ -16,7 +16,7 @@ namespace Service::NVFlinger {
BufferQueue::BufferQueue(u32 id, u64 layer_id) : id(id), layer_id(layer_id) {
auto& kernel = Core::System::GetInstance().Kernel();
- buffer_wait_event = Kernel::WritableEvent::CreateEventPair(kernel, Kernel::ResetType::Sticky,
+ buffer_wait_event = Kernel::WritableEvent::CreateEventPair(kernel, Kernel::ResetType::Manual,
"BufferQueue NativeHandle");
}