From a6f76db0fa2dc63674c6efd1f634140f006e6f76 Mon Sep 17 00:00:00 2001 From: Antonio Martinez Date: Wed, 21 May 2025 18:54:24 -0400 Subject: [PATCH] Fixed misaligned arrows in 4P team hud --- src/k_hud.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/k_hud.cpp b/src/k_hud.cpp index 4fb412a1f..8d527e7c0 100644 --- a/src/k_hud.cpp +++ b/src/k_hud.cpp @@ -3294,6 +3294,7 @@ static void K_drawKartTeamScores(void) scorey = 10; scoregap = 2; + facex = -2; facey = -5; faceoff = 4; } @@ -3389,6 +3390,7 @@ static void K_drawKartTeamScores(void) lastleveltime = leveltime; fixed_t enemypercent = FixedDiv(enemyscore*FRACUNIT, totalscore*FRACUNIT); + enemypercent = FRACUNIT/2; // fixed_t allypercent = FixedDiv(allyscore*FRACUNIT, totalscore*FRACUNIT); INT32 enemywidth = FixedInt(FixedMul(enemypercent, barwidth*FRACUNIT)); INT32 allywidth = barwidth - enemywidth;