From 31c911e88f330cee7383d7f6817c41e899a16ecb Mon Sep 17 00:00:00 2001 From: wolfy852 Date: Wed, 16 Jan 2019 19:53:09 -0600 Subject: [PATCH] Fix position numbers being off in 1P --- src/k_kart.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/k_kart.c b/src/k_kart.c index 476bff46..3ac84453 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -6841,7 +6841,13 @@ static void K_DrawKartPositionNum(INT32 num) W = FixedMul(W<>FRACBITS; // pain and suffering defined below - if (splitscreen == 1) // for this splitscreen, we'll use case by case because it's a bit different. + if (!splitscreen) + { + fx = POSI_X; + fy = BASEVIDHEIGHT - 8; + fflags = V_SNAPTOBOTTOM|V_SNAPTORIGHT; + } + else if (splitscreen == 1) // for this splitscreen, we'll use case by case because it's a bit different. { fx = POSI_X; if (stplyr == &players[displayplayer]) // for player 1: display this at the top right, above the minimap.