mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-03 20:26:05 +00:00
At toaster's suggestion, have 2p control whether closed captioning is moved up if the powerup display is 1st person only
This commit is contained in:
parent
6c85af79f6
commit
edf9c4ebc5
1 changed files with 5 additions and 2 deletions
|
|
@ -451,8 +451,11 @@ void SCR_ClosedCaptions(void)
|
|||
basey -= 8;
|
||||
else if ((modeattacking == ATTACKING_NIGHTS)
|
||||
|| (!(maptol & TOL_NIGHTS)
|
||||
&& ((cv_powerupdisplay.value == 2)
|
||||
|| (cv_powerupdisplay.value == 1 && !splitscreen && !camera.chase))))
|
||||
&& ((cv_powerupdisplay.value == 2) // "Always"
|
||||
|| (cv_powerupdisplay.value == 1 // "First-person only"
|
||||
&& ((!splitscreen && !camera.chase)
|
||||
|| (splitscreen && !camera2.chase)) // in 2p mode, move up only if 2p's powerup display is on
|
||||
))))
|
||||
basey -= 16;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue