mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-28 01:06:40 +00:00
K_DrawKartMinimap: Fix ghosts not being drawn properly
Check for progressionbar was being accidentially inverted
This commit is contained in:
parent
6acb52396b
commit
e1b0ad3eaf
1 changed files with 1 additions and 1 deletions
|
|
@ -3695,7 +3695,7 @@ static void K_drawKartMinimap(void)
|
|||
localplayers[i] = -1;
|
||||
|
||||
// Player's tiny icons on the Automap. (drawn opposite direction so player 1 is drawn last in splitscreen)
|
||||
if (ghosts && doprogressionbar == true) // future work: show ghosts on progression bar
|
||||
if (ghosts && doprogressionbar == false) // future work: show ghosts on progression bar
|
||||
{
|
||||
demoghost *g = ghosts;
|
||||
while (g)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue