aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/object_v1d.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hugo/object_v1d.cpp')
-rw-r--r--engines/hugo/object_v1d.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/hugo/object_v1d.cpp b/engines/hugo/object_v1d.cpp
index 0b59b9f39b..2ad4134a72 100644
--- a/engines/hugo/object_v1d.cpp
+++ b/engines/hugo/object_v1d.cpp
@@ -56,7 +56,7 @@ ObjectHandler_v1d::~ObjectHandler_v1d() {
// 2. Display new object frames/positions in dib
// Finally, cycle any animating objects to next frame
void ObjectHandler_v1d::updateImages() {
- debugC(5, kDebugEngine, "updateImages");
+ debugC(5, kDebugObject, "updateImages");
// Initialise the index array to visible objects in current screen
int num_objs = 0;
@@ -169,7 +169,7 @@ void ObjectHandler_v1d::updateImages() {
// Update all object positions. Process object 'local' events
// including boundary events and collisions
void ObjectHandler_v1d::moveObjects() {
- debugC(4, kDebugEngine, "moveObjects");
+ debugC(4, kDebugObject, "moveObjects");
static int dxOld, dyOld; // previous directions for CHASEing
@@ -339,7 +339,7 @@ void ObjectHandler_v1d::swapImages(int objNumb1, int objNumb2) {
// Swap all the images of one object with another. Set hero_image (we make
// the assumption for now that the first obj is always the HERO) to the object
// number of the swapped image
- debugC(1, kDebugSchedule, "swapImages(%d, %d)", objNumb1, objNumb2);
+ debugC(1, kDebugObject, "swapImages(%d, %d)", objNumb1, objNumb2);
seqList_t tmpSeqList[MAX_SEQUENCES];
int seqListSize = sizeof(seqList_t) * MAX_SEQUENCES;