Fix vissprite-related crashing in OGL

This commit is contained in:
RedEnchilada 2016-02-21 22:32:38 -06:00
parent f87f1b7b1a
commit ce793dfe28
1 changed files with 1 additions and 1 deletions

View File

@ -5039,7 +5039,7 @@ static void HWR_ProjectSprite(mobj_t *thing)
tz = (tr_x * gr_viewcos) + (tr_y * gr_viewsin);
// thing is behind view plane?
if (tz < ZCLIP_PLANE && md2_models[thing->sprite].notfound == true) //Yellow: Only MD2's dont disappear
if (tz < ZCLIP_PLANE && (!cv_grmd2.value || md2_models[thing->sprite].notfound == true)) //Yellow: Only MD2's dont disappear
return;
tx = (tr_x * gr_viewsin) - (tr_y * gr_viewcos);