aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/scene.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2013-12-09 17:38:04 +0200
committerEugene Sandulenko2013-12-09 17:38:04 +0200
commit354794386cbdd8061a32e20659f14fb2965539c9 (patch)
treef594427d8a3bb839c04dd7af26f4fe3c68fe2f07 /engines/fullpipe/scene.cpp
parent82a9726e86abe25fdef713087f646d27cab697bd (diff)
downloadscummvm-rg350-354794386cbdd8061a32e20659f14fb2965539c9.tar.gz
scummvm-rg350-354794386cbdd8061a32e20659f14fb2965539c9.tar.bz2
scummvm-rg350-354794386cbdd8061a32e20659f14fb2965539c9.zip
FULLPIPE: Rearrange debug output
Diffstat (limited to 'engines/fullpipe/scene.cpp')
-rw-r--r--engines/fullpipe/scene.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/fullpipe/scene.cpp b/engines/fullpipe/scene.cpp
index 3831831866..78c58bdea8 100644
--- a/engines/fullpipe/scene.cpp
+++ b/engines/fullpipe/scene.cpp
@@ -447,7 +447,7 @@ void Scene::objectList_sortByPriority(PtrList &list) {
}
void Scene::draw() {
- debug(0, ">>>>> Scene::draw()");
+ debug(6, ">>>>> Scene::draw()");
updateScrolling();
drawContent(60000, 0, true);
@@ -525,7 +525,7 @@ int Scene::getPictureObjectIdAtPos(int x, int y) {
}
void Scene::update(int counterdiff) {
- debug(0, "Scene::update(%d)", counterdiff);
+ debug(6, "Scene::update(%d)", counterdiff);
for (PtrList::iterator s = _staticANIObjectList2.begin(); s != _staticANIObjectList2.end(); ++s)
((StaticANIObject *)*s)->update(counterdiff);