From c69d1627753d3c2363bc57fe81c98bb225b4685b Mon Sep 17 00:00:00 2001 From: toaster Date: Mon, 15 Sep 2025 20:07:14 +0100 Subject: [PATCH] Do not horizontally flip typing/voice indicator --- src/k_hud.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/k_hud.cpp b/src/k_hud.cpp index 19326079d..f8230fcd9 100644 --- a/src/k_hud.cpp +++ b/src/k_hud.cpp @@ -5265,6 +5265,7 @@ static void K_DrawTypingDot(fixed_t x, fixed_t y, UINT8 duration, player_t *p, I static void K_DrawTypingNotifier(fixed_t x, fixed_t y, player_t *p, INT32 flags) { int playernum = p - players; + flags &= ~V_FLIP; // does not support this if (p->cmd.flags & TICCMD_TYPING || S_IsPlayerVoiceActive(playernum)) { V_DrawFixedPatch(x, y, FRACUNIT, V_SPLITSCREEN|flags, kp_talk, NULL);