From 0019e74604b04000e8408fd9cbfe5c2c88497551 Mon Sep 17 00:00:00 2001 From: James R Date: Tue, 3 Oct 2023 21:51:35 -0700 Subject: [PATCH] HUD: fix nametag position for P2 in 2P splitscreen --- src/k_hud.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_hud.c b/src/k_hud.c index 8eea55fdc..0f36e22f1 100644 --- a/src/k_hud.c +++ b/src/k_hud.c @@ -3453,7 +3453,7 @@ static void K_DrawNameTagForPlayer(fixed_t x, fixed_t y, player_t *p) // Since there's no "V_DrawFixedFill", and I don't feel like making it, // fuck it, we're gonna just V_NOSCALESTART hack it - if (cnum & 1) + if (r_splitscreen > 1 && cnum & 1) { x += (BASEVIDWIDTH/2) * FRACUNIT; }