summaryrefslogtreecommitdiffstats
path: root/pacman-c++/actor.cpp
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2011-04-11 13:42:28 +0200
committermanuel <manuel@mausz.at>2011-04-11 13:42:28 +0200
commit6c44b14d2bae2120c069ab205f95b2e51de2caea (patch)
tree9fd910c27cb23d22db1cf1681e6791fb0fa0efea /pacman-c++/actor.cpp
parent3b8237b434c9a094dafebbf364b89ab2f4cbd460 (diff)
downloadfoop-6c44b14d2bae2120c069ab205f95b2e51de2caea.tar.gz
foop-6c44b14d2bae2120c069ab205f95b2e51de2caea.tar.bz2
foop-6c44b14d2bae2120c069ab205f95b2e51de2caea.zip
make constants::server extern
code cleanup
Diffstat (limited to 'pacman-c++/actor.cpp')
-rw-r--r--pacman-c++/actor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/pacman-c++/actor.cpp b/pacman-c++/actor.cpp
index e34d338..a97232f 100644
--- a/pacman-c++/actor.cpp
+++ b/pacman-c++/actor.cpp
@@ -89,7 +89,7 @@ QSequentialAnimationGroup *Actor::setupEatingAnimation(Actor::Movement direction
89 fadeout->setEndValue(false); 89 fadeout->setEndValue(false);
90 90
91 QPropertyAnimation *move = new QPropertyAnimation(img, "pos", m_moving); 91 QPropertyAnimation *move = new QPropertyAnimation(img, "pos", m_moving);
92 move->setDuration(Constants::tick - 20); //TODO 92 move->setDuration(Constants::tick - 50); //TODO
93 move->setEndValue(QPoint(0, 0)); 93 move->setEndValue(QPoint(0, 0));
94 } 94 }
95 95