summaryrefslogtreecommitdiffstats
path: root/pacman-c++/actor.cpp
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2011-04-12 20:23:33 +0200
committermanuel <manuel@mausz.at>2011-04-12 20:23:33 +0200
commit6af8e7795da1e86745364af1538fa76d4e0fc07e (patch)
tree815ea747b9249a3a7ee10040c31da45c9af48fb1 /pacman-c++/actor.cpp
parentea20d11fdaf383eab6269d5aae2558fd15c5c29e (diff)
downloadfoop-6af8e7795da1e86745364af1538fa76d4e0fc07e.tar.gz
foop-6af8e7795da1e86745364af1538fa76d4e0fc07e.tar.bz2
foop-6af8e7795da1e86745364af1538fa76d4e0fc07e.zip
minor improvments: better debug messages + no tabs :D
Diffstat (limited to 'pacman-c++/actor.cpp')
-rw-r--r--pacman-c++/actor.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/pacman-c++/actor.cpp b/pacman-c++/actor.cpp
index d53566e..a746546 100644
--- a/pacman-c++/actor.cpp
+++ b/pacman-c++/actor.cpp
@@ -188,6 +188,7 @@ void Actor::move(Actor::Movement direction)
188 188
189 if (direction == Actor::None) 189 if (direction == Actor::None)
190 { 190 {
191 //TODO
191 qDebug() << "pause"; 192 qDebug() << "pause";
192 m_wakaPlayer->pause(); 193 m_wakaPlayer->pause();
193 } 194 }
@@ -197,8 +198,6 @@ void Actor::move(Actor::Movement direction)
197 198
198void Actor::moveByServer(Actor::Movement direction) 199void Actor::moveByServer(Actor::Movement direction)
199{ 200{
200 qDebug() << "move by server";
201
202 QPointF endpos(0, 0); 201 QPointF endpos(0, 0);
203 switch(direction) 202 switch(direction)
204 { 203 {