diff options
author | aap <aap@papnet.eu> | 2021-05-23 17:49:55 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2021-06-24 20:34:33 +0200 |
commit | 93e99299250fbc5e459883b514b871f6009edfc6 (patch) | |
tree | 551c1d8dfbc1b3cd2d8e2a2fd2a82109f54f09aa /src/render | |
parent | Undef PS2_AUDIO_CHANNELS for SQUEEZE_PERFORMANCE and VANILLA_DEFINES (diff) | |
download | re3-93e99299250fbc5e459883b514b871f6009edfc6.tar re3-93e99299250fbc5e459883b514b871f6009edfc6.tar.gz re3-93e99299250fbc5e459883b514b871f6009edfc6.tar.bz2 re3-93e99299250fbc5e459883b514b871f6009edfc6.tar.lz re3-93e99299250fbc5e459883b514b871f6009edfc6.tar.xz re3-93e99299250fbc5e459883b514b871f6009edfc6.tar.zst re3-93e99299250fbc5e459883b514b871f6009edfc6.zip |
Diffstat (limited to 'src/render')
-rw-r--r-- | src/render/Occlusion.cpp | 4 | ||||
-rw-r--r-- | src/render/Shadows.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/render/Occlusion.cpp b/src/render/Occlusion.cpp index 3ea5678c..ec7101a6 100644 --- a/src/render/Occlusion.cpp +++ b/src/render/Occlusion.cpp @@ -513,8 +513,8 @@ bool CEntity::IsEntityOccluded(void) { } if (COcclusion::aActiveOccluders[i].IsPointWithinOcclusionArea(coors.x, coors.y, 0.0f)) { - CVector min = m_matrix * CModelInfo::GetModelInfo(GetModelIndex())->GetColModel()->boundingBox.min; - CVector max = m_matrix * CModelInfo::GetModelInfo(GetModelIndex())->GetColModel()->boundingBox.max; + CVector min = m_matrix * CModelInfo::GetColModel(m_modelIndex)->boundingBox.min; + CVector max = m_matrix * CModelInfo::GetColModel(m_modelIndex)->boundingBox.max; if (CalcScreenCoors(min, &coors) && !COcclusion::aActiveOccluders[i].IsPointWithinOcclusionArea(coors.x, coors.y, 0.0f)) continue; if (CalcScreenCoors(CVector(max.x, max.y, min.z), &coors) && !COcclusion::aActiveOccluders[i].IsPointWithinOcclusionArea(coors.x, coors.y, 0.0f)) continue; diff --git a/src/render/Shadows.cpp b/src/render/Shadows.cpp index ae079821..dd87bff6 100644 --- a/src/render/Shadows.cpp +++ b/src/render/Shadows.cpp @@ -1406,7 +1406,7 @@ CShadows::CastShadowSectorList(CPtrList &PtrList, float fStartX, float fStartY, { pEntity->m_scanCode = CWorld::GetCurrentScanCode(); - if ( pEntity->bUsesCollision && !pEntity->m_flagE2 ) + if ( pEntity->bUsesCollision && !pEntity->bDontCastShadowsOn) { if ( IsAreaVisible(pEntity->m_area) ) { |