mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +00:00
Don't hide HUD with hu_showscores in single player/Record Attack
This also makes Lua game HUD consistent with the Kart HUD.
This commit is contained in:
parent
564fa58c77
commit
90b0b7f498
1 changed files with 4 additions and 4 deletions
|
|
@ -1799,10 +1799,12 @@ static void ST_doItemFinderIconsAndSound(void) // SRB2kart - unused.
|
||||||
//
|
//
|
||||||
static void ST_overlayDrawer(void)
|
static void ST_overlayDrawer(void)
|
||||||
{
|
{
|
||||||
/* SRB2kart doesn't need this stuff
|
|
||||||
//hu_showscores = auto hide score/time/rings when tab rankings are shown
|
//hu_showscores = auto hide score/time/rings when tab rankings are shown
|
||||||
if (!(hu_showscores && (netgame || multiplayer)))
|
if (!(hu_showscores && (netgame || multiplayer)))
|
||||||
{
|
{
|
||||||
|
K_drawKartHUD();
|
||||||
|
|
||||||
|
/* SRB2kart doesn't need this stuff
|
||||||
if (maptol & TOL_NIGHTS)
|
if (maptol & TOL_NIGHTS)
|
||||||
ST_drawNiGHTSHUD();
|
ST_drawNiGHTSHUD();
|
||||||
else
|
else
|
||||||
|
|
@ -1826,8 +1828,8 @@ static void ST_overlayDrawer(void)
|
||||||
)
|
)
|
||||||
ST_drawLives();
|
ST_drawLives();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
*/
|
*/
|
||||||
|
}
|
||||||
|
|
||||||
// GAME OVER pic
|
// GAME OVER pic
|
||||||
/*if (G_GametypeUsesLives() && stplyr->lives <= 0 && !(hu_showscores && (netgame || multiplayer)))
|
/*if (G_GametypeUsesLives() && stplyr->lives <= 0 && !(hu_showscores && (netgame || multiplayer)))
|
||||||
|
|
@ -1847,8 +1849,6 @@ static void ST_overlayDrawer(void)
|
||||||
// Countdown timer for Race Mode
|
// Countdown timer for Race Mode
|
||||||
// ...moved to k_kart.c so we can take advantage of the LAPS_Y value
|
// ...moved to k_kart.c so we can take advantage of the LAPS_Y value
|
||||||
|
|
||||||
K_drawKartHUD();
|
|
||||||
|
|
||||||
/* SRB2kart doesn't need this stuff, I think
|
/* SRB2kart doesn't need this stuff, I think
|
||||||
// If you are in overtime, put a big honkin' flashin' message on the screen.
|
// If you are in overtime, put a big honkin' flashin' message on the screen.
|
||||||
if (G_BattleGametype() && cv_overtime.value
|
if (G_BattleGametype() && cv_overtime.value
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue