From b929ebf49e763023f3ee9bdf05ec147b7063dc09 Mon Sep 17 00:00:00 2001 From: Liam Date: Thu, 11 May 2023 17:08:14 -0400 Subject: [PATCH] nvnflinger: fix producer slot fence init --- src/core/hle/service/nvnflinger/buffer_queue_producer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/hle/service/nvnflinger/buffer_queue_producer.cpp b/src/core/hle/service/nvnflinger/buffer_queue_producer.cpp index cd0a130943..c9e9fedd13 100644 --- a/src/core/hle/service/nvnflinger/buffer_queue_producer.cpp +++ b/src/core/hle/service/nvnflinger/buffer_queue_producer.cpp @@ -793,6 +793,7 @@ Status BufferQueueProducer::SetPreallocatedBuffer(s32 slot, std::scoped_lock lock{core->mutex}; slots[slot] = {}; + slots[slot].fence = Fence::NoFence(); slots[slot].graphic_buffer = buffer; slots[slot].frame_number = 0;