summaryrefslogtreecommitdiffstats
path: root/src/animation
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-09-13 02:10:14 +0200
committerGitHub <noreply@github.com>2020-09-13 02:10:14 +0200
commit25a22cc6f25c01c7fc777bc41f632e6237ac8426 (patch)
tree4323944c27801c403fcea94a4fee9913570b172e /src/animation
parentMerge pull request #701 from erorcun/miami (diff)
parentAdd missing file (diff)
downloadre3-25a22cc6f25c01c7fc777bc41f632e6237ac8426.tar
re3-25a22cc6f25c01c7fc777bc41f632e6237ac8426.tar.gz
re3-25a22cc6f25c01c7fc777bc41f632e6237ac8426.tar.bz2
re3-25a22cc6f25c01c7fc777bc41f632e6237ac8426.tar.lz
re3-25a22cc6f25c01c7fc777bc41f632e6237ac8426.tar.xz
re3-25a22cc6f25c01c7fc777bc41f632e6237ac8426.tar.zst
re3-25a22cc6f25c01c7fc777bc41f632e6237ac8426.zip
Diffstat (limited to '')
-rw-r--r--src/animation/CutsceneMgr.cpp2
-rw-r--r--src/animation/CutsceneMgr.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/animation/CutsceneMgr.cpp b/src/animation/CutsceneMgr.cpp
index 31128990..64951a87 100644
--- a/src/animation/CutsceneMgr.cpp
+++ b/src/animation/CutsceneMgr.cpp
@@ -657,7 +657,7 @@ CCutsceneMgr::RemoveEverythingFromTheWorldForTheBiggestFuckoffCutsceneEver()
for (int i = CPools::GetBuildingPool()->GetSize() - 1; i >= 0; i--) {
CBuilding* pBuilding = CPools::GetBuildingPool()->GetSlot(i);
- if (pBuilding && pBuilding->GetClump() != nil && pBuilding->bIsBIGBuilding && pBuilding->bStreamBIGBuilding) {
+ if (pBuilding && pBuilding->m_rwObject != nil && pBuilding->bIsBIGBuilding && pBuilding->bStreamBIGBuilding) {
if (pBuilding->bIsBIGBuilding)
CStreaming::RequestModel(pBuilding->GetModelIndex(), 0);
if (!pBuilding->bImBeingRendered)
diff --git a/src/animation/CutsceneMgr.h b/src/animation/CutsceneMgr.h
index b4497b5b..51ef6c04 100644
--- a/src/animation/CutsceneMgr.h
+++ b/src/animation/CutsceneMgr.h
@@ -57,4 +57,5 @@ public:
static void AttachObjectToFrame(CObject *pObject, CEntity *pAttachTo, const char *frame);
static void AttachObjectToBone(CObject *pObject, CObject *pAttachTo, int frame);
static void RemoveEverythingFromTheWorldForTheBiggestFuckoffCutsceneEver();
+ static void DisableCutsceneShadows() { ms_useCutsceneShadows = false; }
};