summaryrefslogtreecommitdiffstats
path: root/src/core/World.cpp
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-12-01 11:25:02 +0100
committerGitHub <noreply@github.com>2020-12-01 11:25:02 +0100
commit56c471d02e1c704202f809de7f3d179c98ae121f (patch)
treea1886f8b54f498c02c9ffecb9f1541f65ecedfae /src/core/World.cpp
parentcam stuff (diff)
parentMerge remote-tracking branch 'upstream/master' (diff)
downloadre3-56c471d02e1c704202f809de7f3d179c98ae121f.tar
re3-56c471d02e1c704202f809de7f3d179c98ae121f.tar.gz
re3-56c471d02e1c704202f809de7f3d179c98ae121f.tar.bz2
re3-56c471d02e1c704202f809de7f3d179c98ae121f.tar.lz
re3-56c471d02e1c704202f809de7f3d179c98ae121f.tar.xz
re3-56c471d02e1c704202f809de7f3d179c98ae121f.tar.zst
re3-56c471d02e1c704202f809de7f3d179c98ae121f.zip
Diffstat (limited to 'src/core/World.cpp')
-rw-r--r--src/core/World.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/World.cpp b/src/core/World.cpp
index 62d8d002..844a4fb7 100644
--- a/src/core/World.cpp
+++ b/src/core/World.cpp
@@ -1738,10 +1738,12 @@ CWorld::ShutDown(void)
CWorld::Remove(pEntity);
delete pEntity;
}
+#ifndef FIX_BUGS
pSector->m_lists[ENTITYLIST_BUILDINGS].Flush();
pSector->m_lists[ENTITYLIST_BUILDINGS_OVERLAP].Flush();
pSector->m_lists[ENTITYLIST_DUMMIES].Flush();
pSector->m_lists[ENTITYLIST_DUMMIES_OVERLAP].Flush();
+#endif
}
for(int32 i = 0; i < 4; i++) {
for(CPtrNode *pNode = GetBigBuildingList((eLevelName)i).first; pNode; pNode = pNode->next) {
@@ -1753,6 +1755,12 @@ CWorld::ShutDown(void)
}
for(int i = 0; i < NUMSECTORS_X * NUMSECTORS_Y; i++) {
CSector *pSector = GetSector(i % NUMSECTORS_X, i / NUMSECTORS_Y);
+#ifdef FIX_BUGS
+ pSector->m_lists[ENTITYLIST_BUILDINGS].Flush();
+ pSector->m_lists[ENTITYLIST_BUILDINGS_OVERLAP].Flush();
+ pSector->m_lists[ENTITYLIST_DUMMIES].Flush();
+ pSector->m_lists[ENTITYLIST_DUMMIES_OVERLAP].Flush();
+#endif
if(pSector->m_lists[ENTITYLIST_BUILDINGS].first) {
sprintf(gString, "Building list %d,%d not empty\n", i % NUMSECTORS_X, i / NUMSECTORS_Y);
pSector->m_lists[ENTITYLIST_BUILDINGS].Flush();