From b4e90e95b0f4a6dffa65f2e9eaae153db032b447 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Sat, 1 Mar 2025 06:31:59 +0900 Subject: [PATCH] ir_user.cpp: Corrected typo in comment (#584) --- src/core/hle/service/ir/ir_user.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/ir/ir_user.cpp b/src/core/hle/service/ir/ir_user.cpp index 3249e0b43..2c29d855a 100644 --- a/src/core/hle/service/ir/ir_user.cpp +++ b/src/core/hle/service/ir/ir_user.cpp @@ -64,7 +64,7 @@ static_assert(sizeof(SharedMemoryHeader) == 16, "SharedMemoryHeader has wrong si * A buffer consists of three parts: * - BufferInfo: stores available count of packets, and their position in the PacketInfo * circular queue. - * - PacketInfo circular queue: stores the position of each avaiable packets in the Packet data + * - PacketInfo circular queue: stores the position of each available packets in the Packet data * buffer. Each entry is a pair of {offset, size}. * - Packet data circular buffer: stores the actual data of packets. *