From 81c92f708e22f3d9b4860f9b182870d9b81dcb0e Mon Sep 17 00:00:00 2001 From: AZero13 <83477269+SiliconA-Z@users.noreply.github.com> Date: Sun, 5 Apr 2026 19:24:42 -0400 Subject: [PATCH] Remove stray dereference in union room chat --- src/union_room_chat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/union_room_chat.c b/src/union_room_chat.c index 8cdd4bb1448e..ce2ae21ed502 100644 --- a/src/union_room_chat.c +++ b/src/union_room_chat.c @@ -1953,7 +1953,7 @@ static u8 *GetLimitedMessageStartPtr(void) for (i = 0; i < numChars; i++) { if (*str == CHAR_EXTRA_SYMBOL) - *str++; + str++; str++; }