diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-12-14 19:35:27 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-12-14 19:35:27 +0000 |
commit | 55494057bd7e1ae5e6260816b1c5b2a84e2ff573 (patch) | |
tree | e8dac9033909041361c1ca72d8955884f2a85b7f /src/engine.cpp | |
parent | 1ccc963719897ca290104f42adc9c37b792feb7a (diff) | |
download | mana-client-55494057bd7e1ae5e6260816b1c5b2a84e2ff573.tar.gz mana-client-55494057bd7e1ae5e6260816b1c5b2a84e2ff573.tar.bz2 mana-client-55494057bd7e1ae5e6260816b1c5b2a84e2ff573.tar.xz mana-client-55494057bd7e1ae5e6260816b1c5b2a84e2ff573.zip |
Removed the rather useless remaining draw function from the engine class and
fixed an issue with fading out damage texts (they were sometimes fully opaque
at the end of fading out).
Diffstat (limited to 'src/engine.cpp')
-rw-r--r-- | src/engine.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/engine.cpp b/src/engine.cpp index bcf6ad8c..6ed02a9d 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -128,8 +128,3 @@ void Engine::logic() beingManager->logic(); gui->logic(); } - -void Engine::draw(Graphics *graphics) -{ - gui->draw(); -} |