summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-05-05 21:15:28 +0300
committerAndrei Karas <akaras@inbox.ru>2018-05-05 23:52:00 +0300
commit9874a6311c6b51247caed248cfcf2d2e72095923 (patch)
tree0a1810721ddf2cb6ed4e1740e8bcf3da1cd21171 /src/game.cpp
parent55d8a832786175c5ff9c9ab2eaa31296d342490a (diff)
downloadplus-9874a6311c6b51247caed248cfcf2d2e72095923.tar.gz
plus-9874a6311c6b51247caed248cfcf2d2e72095923.tar.bz2
plus-9874a6311c6b51247caed248cfcf2d2e72095923.tar.xz
plus-9874a6311c6b51247caed248cfcf2d2e72095923.zip
Remove support for CILK plus.
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game.cpp b/src/game.cpp
index 43e48943e..bfbaba353 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -696,7 +696,7 @@ void Game::slowLogic()
whoIsOnline->slowLogic();
Being::reReadConfig();
if (killStats != nullptr)
- cilk_spawn killStats->recalcStats();
+ killStats->recalcStats();
if (time > mTime2 || mTime2 - time > 10)
{
@@ -713,15 +713,15 @@ void Game::slowLogic()
#ifdef TMWA_SUPPORT
if (shopWindow != nullptr)
- cilk_spawn shopWindow->updateTimes();
+ shopWindow->updateTimes();
if (guildManager != nullptr)
guildManager->slowLogic();
#endif // TMWA_SUPPORT
if (skillDialog != nullptr)
- cilk_spawn skillDialog->slowLogic();
+ skillDialog->slowLogic();
- cilk_spawn PacketCounters::update();
+ PacketCounters::update();
// Handle network stuff
if (!gameHandler->isConnected())