Skip to content
Snippets Groups Projects
Commit 65737cd4 authored by Eidolon's avatar Eidolon
Browse files

Only call SetupFrame in T-1 hack with player->mo

parent 461a80d3
No related branches found
No related tags found
No related merge requests found
......@@ -827,7 +827,10 @@ void P_Ticker(boolean run)
{
R_SkyboxFrame(player);
}
R_SetupFrame(player, (skyboxmo[0] && cv_skybox.value));
if (player->mo)
{
R_SetupFrame(player, (skyboxmo[0] && cv_skybox.value));
}
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment