From 93e444c0d9b1454fb30cafb101025ae69552c605 Mon Sep 17 00:00:00 2001 From: James R Date: Sat, 6 Apr 2024 17:47:41 -0700 Subject: [PATCH] HUD: fade-in instead of slide-in 2P minimap - Slide-in is always based off of player 1, who may have GAME OVERED before the race even started thus hiding the minimap --- src/k_hud.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/k_hud.cpp b/src/k_hud.cpp index 5c1b8f3db..076cd3157 100644 --- a/src/k_hud.cpp +++ b/src/k_hud.cpp @@ -4346,12 +4346,15 @@ static void K_drawKartMinimap(void) return; // no pic, just get outta here } - else if (r_splitscreen < 2) // 1/2P right aligned + else if (r_splitscreen < 1) // 1P right aligned { splitflags = (V_SLIDEIN|V_SNAPTORIGHT); } - else if (r_splitscreen == 3) // 4P splits + else // 2/4P splits { + if (r_splitscreen == 1) + splitflags = V_SNAPTORIGHT; // 2P right aligned + dofade = true; } // 3P lives in the middle of the bottom right