diff options
author | Philipp Sehmisch <crush@themanaworld.org> | 2009-01-25 03:36:13 +0100 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-01-25 00:00:10 -0700 |
commit | edd500dd27bb648840abfe1cecb0767d7b2ba3ae (patch) | |
tree | 7500a0c6906b3901677d4010b9a0dc845740c882 /src/engine.cpp | |
parent | 20adf0056f3b22bf9628daed0967151918f75ad2 (diff) | |
download | mana-edd500dd27bb648840abfe1cecb0767d7b2ba3ae.tar.gz mana-edd500dd27bb648840abfe1cecb0767d7b2ba3ae.tar.bz2 mana-edd500dd27bb648840abfe1cecb0767d7b2ba3ae.tar.xz mana-edd500dd27bb648840abfe1cecb0767d7b2ba3ae.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 2a37d888..ab13450e 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -157,5 +157,6 @@ void Engine::logic() { beingManager->logic(); particleEngine->update(); + mCurrentMap->update(); gui->logic(); } |