summaryrefslogtreecommitdiff
path: root/src/engine.cpp
diff options
context:
space:
mode:
authorPhilipp Sehmisch <crush@themanaworld.org>2009-01-25 03:36:13 +0100
committerPhilipp Sehmisch <crush@themanaworld.org>2009-01-25 03:36:13 +0100
commit7e928fc6559e89b64f49aea30d796dbfe75c4912 (patch)
tree6099e8e7f85b80bbda957e2a3b83c63441236717 /src/engine.cpp
parente64ed1af4896127a2a1d0989c624e4b7e327dd5f (diff)
downloadmana-client-7e928fc6559e89b64f49aea30d796dbfe75c4912.tar.gz
mana-client-7e928fc6559e89b64f49aea30d796dbfe75c4912.tar.bz2
mana-client-7e928fc6559e89b64f49aea30d796dbfe75c4912.tar.xz
mana-client-7e928fc6559e89b64f49aea30d796dbfe75c4912.zip
Fixed performance hickups caused by animations due to buggy tick timer. A tad less performant than the intended solution but at least it is constantly so.
Diffstat (limited to 'src/engine.cpp')
-rw-r--r--src/engine.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/engine.cpp b/src/engine.cpp
index 563ec627..7a76e1b0 100644
--- a/src/engine.cpp
+++ b/src/engine.cpp
@@ -139,5 +139,6 @@ void Engine::logic()
{
beingManager->logic();
particleEngine->update();
+ mCurrentMap->update();
gui->logic();
}