From 3b13f5e43bc6dd89af80ffa857d3fb4aa5118116 Mon Sep 17 00:00:00 2001
From: bunnei <bunneidev@gmail.com>
Date: Sat, 19 Mar 2022 22:48:49 -0700
Subject: [PATCH] hle: nvflinger: buffer_queue_consumer: AcquireBuffer: Fix
 typo.

---
 src/core/hle/service/nvflinger/buffer_queue_consumer.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/core/hle/service/nvflinger/buffer_queue_consumer.cpp b/src/core/hle/service/nvflinger/buffer_queue_consumer.cpp
index cf12ccefff..677bec932d 100644
--- a/src/core/hle/service/nvflinger/buffer_queue_consumer.cpp
+++ b/src/core/hle/service/nvflinger/buffer_queue_consumer.cpp
@@ -49,7 +49,7 @@ Status BufferQueueConsumer::AcquireBuffer(BufferItem* out_buffer,
         if (expected_present.count() != 0) {
             constexpr auto MAX_REASONABLE_NSEC = 1000000000LL; // 1 second
 
-            // The expected_presenst_ns argument indicates when the buffer is expected to be
+            // The expected_present argument indicates when the buffer is expected to be
             // presented on-screen.
             while (core->queue.size() > 1 && !core->queue[0].is_auto_timestamp) {
                 const auto& buffer_item{core->queue[1]};