From b9adcc9785eed90ee34d967f1f3321c2737ef5d5 Mon Sep 17 00:00:00 2001 From: SDK-Chan Date: Sun, 14 Sep 2025 14:14:39 +0200 Subject: [PATCH] Update src/core/hle/service/nvnflinger/buffer_queue_core.cpp Adjust the comments alignment. --- src/core/hle/service/nvnflinger/buffer_queue_core.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/hle/service/nvnflinger/buffer_queue_core.cpp b/src/core/hle/service/nvnflinger/buffer_queue_core.cpp index f85878cd94..2a01ae4062 100644 --- a/src/core/hle/service/nvnflinger/buffer_queue_core.cpp +++ b/src/core/hle/service/nvnflinger/buffer_queue_core.cpp @@ -63,8 +63,8 @@ s32 BufferQueueCore::GetMaxBufferCountLocked(bool async) const { return override_max_buffer_count; } - // Any buffers that are dequeued by the producer or sitting in the queue waiting to be consumed - // need to have their slots preserved. + // Any buffers that are dequeued by the producer or sitting in the queue waiting to be consumed + // need to have their slots preserved. for (s32 slot = max_buffer_count; slot < BufferQueueDefs::NUM_BUFFER_SLOTS; ++slot) { const auto state = slots[slot].buffer_state; if (state == BufferState::Queued || state == BufferState::Dequeued) {