From 3876792a5101e51726ad038b290e43dd2d3eb665 Mon Sep 17 00:00:00 2001 From: Indev Date: Tue, 2 Dec 2025 00:02:55 +0300 Subject: [PATCH] Fix emotes being slightly offset in chat log --- src/hu_stuff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hu_stuff.c b/src/hu_stuff.c index 30c9a9dbd..9466e9c41 100644 --- a/src/hu_stuff.c +++ b/src/hu_stuff.c @@ -1589,7 +1589,7 @@ static void HU_drawChatLog(INT32 offset) { if ((y+dy+2 >= chat_topy) && (y+dy < (chat_bottomy))) { - M_DrawEmote(x+dx+2, y+dy, emote, V_SNAPTOBOTTOM|V_SNAPTOLEFT); + M_DrawEmote(x+dx+2, y+dy+1, emote, V_SNAPTOBOTTOM|V_SNAPTOLEFT); dx += EMOTEWIDTH - charwidth; } j += emotelen;