mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-14 05:41:02 +00:00
Fix P3 getting the wrong split flags in 3p splitscreen
This commit is contained in:
parent
ba07224a8f
commit
28b9c5fc7d
1 changed files with 3 additions and 3 deletions
|
@ -4670,7 +4670,7 @@ static void K_KartDrift(player_t *player, boolean onground)
|
|||
player->kartstuff[k_driftend] = 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
// Incease/decrease the drift value to continue drifting in that direction
|
||||
if (player->kartstuff[k_spinouttimer] == 0 && player->kartstuff[k_jmp] == 1 && onground && player->kartstuff[k_drift] != 0)
|
||||
|
@ -6333,9 +6333,9 @@ INT32 K_calcSplitFlags(INT32 snapflags)
|
|||
}
|
||||
else if (splitscreen > 1)
|
||||
{
|
||||
if (stplyr == &players[thirddisplayplayer] || stplyr == &players[fourthdisplayplayer])
|
||||
if (stplyr == &players[thirddisplayplayer] || (splitscreen == 3 && stplyr == &players[fourthdisplayplayer]))
|
||||
splitflags |= V_SPLITSCREEN;
|
||||
if (stplyr == &players[secondarydisplayplayer] || stplyr == &players[fourthdisplayplayer])
|
||||
if (stplyr == &players[secondarydisplayplayer] || (splitscreen == 3 && stplyr == &players[fourthdisplayplayer]))
|
||||
splitflags |= V_HORZSCREEN;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue