1
0
mirror of https://github.com/td512/re3.git synced 2026-03-09 23:38:17 +00:00
This commit is contained in:
Nikolay Korolev
2020-05-06 19:17:47 +03:00
parent aa12251c6b
commit a24b65cbde
8 changed files with 26 additions and 25 deletions

View File

@@ -1173,7 +1173,7 @@ CRenderer::IsEntityCullZoneVisible(CEntity *ent)
return !(ped->m_pCurSurface && ped->m_pCurSurface->bZoneCulled2);
case ENTITY_TYPE_OBJECT:
obj = (CObject*)ent;
if(!obj->bIsStatic)
if(!obj->IsStatic())
return true;
return !(obj->m_pCurSurface && obj->m_pCurSurface->bZoneCulled2);
}