summaryrefslogtreecommitdiffstats
path: root/src/control
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-11-22 00:12:34 +0100
committerGitHub <noreply@github.com>2020-11-22 00:12:34 +0100
commit15ae9e2a3e58837f355b6f428db1dd1ddcf94ec7 (patch)
tree792d26a13fb9bc1caff0012ec4ec7ba0f8f8e842 /src/control
parentno script logging (diff)
parentneo screen droplets (diff)
downloadre3-15ae9e2a3e58837f355b6f428db1dd1ddcf94ec7.tar
re3-15ae9e2a3e58837f355b6f428db1dd1ddcf94ec7.tar.gz
re3-15ae9e2a3e58837f355b6f428db1dd1ddcf94ec7.tar.bz2
re3-15ae9e2a3e58837f355b6f428db1dd1ddcf94ec7.tar.lz
re3-15ae9e2a3e58837f355b6f428db1dd1ddcf94ec7.tar.xz
re3-15ae9e2a3e58837f355b6f428db1dd1ddcf94ec7.tar.zst
re3-15ae9e2a3e58837f355b6f428db1dd1ddcf94ec7.zip
Diffstat (limited to 'src/control')
-rw-r--r--src/control/GameLogic.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/control/GameLogic.cpp b/src/control/GameLogic.cpp
index 47b4586b..59c75dd4 100644
--- a/src/control/GameLogic.cpp
+++ b/src/control/GameLogic.cpp
@@ -19,6 +19,7 @@
#include "Fire.h"
#include "Script.h"
#include "Garages.h"
+#include "screendroplets.h"
uint8 CGameLogic::ActivePlayers;
@@ -117,6 +118,9 @@ CGameLogic::Update()
}
}
CEventList::Initialise();
+#ifdef SCREEN_DROPLETS
+ ScreenDroplets::Initialise();
+#endif
CMessages::ClearMessages();
CCarCtrl::ClearInterestingVehicleList();
CWorld::ClearExcitingStuffFromArea(pPlayerInfo.GetPos(), 4000.0f, 1);
@@ -196,6 +200,9 @@ CGameLogic::Update()
}
}
CEventList::Initialise();
+#ifdef SCREEN_DROPLETS
+ ScreenDroplets::Initialise();
+#endif
CMessages::ClearMessages();
CCarCtrl::ClearInterestingVehicleList();
CWorld::ClearExcitingStuffFromArea(pPlayerInfo.GetPos(), 4000.0f, 1);
@@ -245,6 +252,9 @@ CGameLogic::Update()
}
}
CEventList::Initialise();
+#ifdef SCREEN_DROPLETS
+ ScreenDroplets::Initialise();
+#endif
CMessages::ClearMessages();
CCarCtrl::ClearInterestingVehicleList();
CWorld::ClearExcitingStuffFromArea(pPlayerInfo.GetPos(), 4000.0f, 1);