mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-22 02:42:20 +00:00
Only call SetupFrame in T-1 hack with player->mo
This commit is contained in:
parent
fdd6550669
commit
af753b5268
1 changed files with 8 additions and 2 deletions
10
src/p_tick.c
10
src/p_tick.c
|
@ -786,7 +786,10 @@ void P_Ticker(boolean run)
|
|||
{
|
||||
R_SkyboxFrame(player1);
|
||||
}
|
||||
R_SetupFrame(player1);
|
||||
if (player1->mo)
|
||||
{
|
||||
R_SetupFrame(player1);
|
||||
}
|
||||
|
||||
if (splitscreen)
|
||||
{
|
||||
|
@ -795,7 +798,10 @@ void P_Ticker(boolean run)
|
|||
{
|
||||
R_SkyboxFrame(player2);
|
||||
}
|
||||
R_SetupFrame(player2);
|
||||
if (player2->mo)
|
||||
{
|
||||
R_SetupFrame(player2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue