mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-10 07:12:03 +00:00
Only call SetupFrame in T-1 hack with player->mo
This commit is contained in:
parent
461a80d357
commit
65737cd4bd
1 changed files with 4 additions and 1 deletions
|
@ -827,7 +827,10 @@ void P_Ticker(boolean run)
|
||||||
{
|
{
|
||||||
R_SkyboxFrame(player);
|
R_SkyboxFrame(player);
|
||||||
}
|
}
|
||||||
R_SetupFrame(player, (skyboxmo[0] && cv_skybox.value));
|
if (player->mo)
|
||||||
|
{
|
||||||
|
R_SetupFrame(player, (skyboxmo[0] && cv_skybox.value));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue