diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-05-05 21:15:28 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-05-05 23:52:00 +0300 |
commit | 9874a6311c6b51247caed248cfcf2d2e72095923 (patch) | |
tree | 0a1810721ddf2cb6ed4e1740e8bcf3da1cd21171 /src/game.cpp | |
parent | 55d8a832786175c5ff9c9ab2eaa31296d342490a (diff) | |
download | manaplus-9874a6311c6b51247caed248cfcf2d2e72095923.tar.gz manaplus-9874a6311c6b51247caed248cfcf2d2e72095923.tar.bz2 manaplus-9874a6311c6b51247caed248cfcf2d2e72095923.tar.xz manaplus-9874a6311c6b51247caed248cfcf2d2e72095923.zip |
Remove support for CILK plus.
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 8 |
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()) |