From 98805e631258ee9dd747895d73b2aae1828dd9f2 Mon Sep 17 00:00:00 2001 From: SDK-Chan Date: Sun, 14 Sep 2025 17:47:21 +0200 Subject: [PATCH] Update src/core/hle/service/nvnflinger/buffer_queue_core.h Adjust buffer_history_pos. --- src/core/hle/service/nvnflinger/buffer_queue_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/nvnflinger/buffer_queue_core.h b/src/core/hle/service/nvnflinger/buffer_queue_core.h index 21588e478f..feedfb0c93 100644 --- a/src/core/hle/service/nvnflinger/buffer_queue_core.h +++ b/src/core/hle/service/nvnflinger/buffer_queue_core.h @@ -91,7 +91,7 @@ private: bool buffer_has_been_queued{}; u64 frame_counter{}; std::array buffer_history{}; - u32 buffer_history_pos{}; + u32 buffer_history_pos{BUFFER_HISTORY_SIZE-1}; u32 transform_hint{}; bool is_allocating{}; mutable std::condition_variable_any is_allocating_condition;