mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-05 09:46:40 +00:00
Turns out Playing() evaluates to false when playing back demos. Who knew?
This commit is contained in:
parent
98e9767afb
commit
9a94a43fc3
1 changed files with 1 additions and 1 deletions
|
|
@ -6348,7 +6348,7 @@ static void K_drawKartMinimap(void)
|
|||
|
||||
// Draw the HUD only when playing in a level.
|
||||
// hu_stuff needs this, unlike st_stuff.
|
||||
if (!(Playing() && gamestate == GS_LEVEL))
|
||||
if (!demoplayback && !(Playing() && gamestate == GS_LEVEL))
|
||||
return;
|
||||
|
||||
if (stplyr != &players[displayplayer])
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue