Untie radars and timers from HUD_DISPLAY_FLAG_LIVES

This commit is contained in:
Agent X 2023-12-12 20:46:06 -05:00
parent 641c2f4159
commit 0bc8eb4feb
1 changed files with 5 additions and 4 deletions

View File

@ -640,11 +640,12 @@ void render_hud(void) {
render_hud_mario_lives();
}
if (hudDisplayFlags & HUD_DISPLAY_FLAG_LIVES && showHud && gLevelValues.hudCapTimer) {
render_hud_cap_timer();
}
// coop hud elements
if (showHud) {
if (gLevelValues.hudCapTimer) {
render_hud_cap_timer();
}
if (hudDisplayFlags & HUD_DISPLAY_FLAG_LIVES && showHud) {
render_hud_red_coins_and_secrets_radar();
}