diff options
author | Philipp Sehmisch <crush@themanaworld.org> | 2009-01-25 03:36:13 +0100 |
---|---|---|
committer | Philipp Sehmisch <crush@themanaworld.org> | 2009-01-25 03:36:13 +0100 |
commit | 7e928fc6559e89b64f49aea30d796dbfe75c4912 (patch) | |
tree | 6099e8e7f85b80bbda957e2a3b83c63441236717 /src/engine.cpp | |
parent | e64ed1af4896127a2a1d0989c624e4b7e327dd5f (diff) | |
download | mana-7e928fc6559e89b64f49aea30d796dbfe75c4912.tar.gz mana-7e928fc6559e89b64f49aea30d796dbfe75c4912.tar.bz2 mana-7e928fc6559e89b64f49aea30d796dbfe75c4912.tar.xz mana-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.cpp | 1 |
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(); } |