mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-26 04:11:18 +00:00
Correct local variable boolean type
This commit is contained in:
parent
1b96c8b40f
commit
661f06e1ef
1 changed files with 1 additions and 1 deletions
|
@ -821,7 +821,7 @@ void P_Ticker(boolean run)
|
|||
for (i = 0; i <= splitscreen; i++)
|
||||
{
|
||||
player_t *player = &players[displayplayers[i]];
|
||||
BOOL skyVisible = skyVisiblePerPlayer[i];
|
||||
boolean skyVisible = skyVisiblePerPlayer[i];
|
||||
if (skyVisible && skyboxmo[0] && cv_skybox.value)
|
||||
{
|
||||
R_SkyboxFrame(player);
|
||||
|
|
Loading…
Reference in a new issue