Remove tens -> ones place push

Looked better but broke splitscreen again while I wasn't looking, fuck this code
This commit is contained in:
Sally Coolatta 2023-09-08 19:05:03 -04:00
parent e7642109b7
commit 9d3772b15e

View file

@ -2003,8 +2003,6 @@ static fixed_t K_DrawKartPositionNumPatch(UINT8 num, UINT8 *color, fixed_t x, fi
);
}
x += 7 * scale; // push the tens place towards the ones place
return x;
}
@ -2133,8 +2131,7 @@ static void K_DrawKartPositionNum(UINT8 num)
do
{
fixed_t w = SHORT(kp_positionnum[adjustNum % 10][0][splitIndex]->width) * scale;
fx += w; // these should be the reverse of the
fx -= 7 * scale; // x offsets in K_DrawKartPositionNumPatch
fx += w;
adjustNum /= 10;
} while (adjustNum);
}