aboutsummaryrefslogtreecommitdiff
path: root/engines/wage/util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wage/util.cpp')
-rw-r--r--engines/wage/util.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/wage/util.cpp b/engines/wage/util.cpp
index 1b3dfc9452..f31a83ca04 100644
--- a/engines/wage/util.cpp
+++ b/engines/wage/util.cpp
@@ -81,6 +81,8 @@ Common::Rect *readRect(Common::SeekableReadStream *in) {
y2 = in->readUint16BE() + 4;
x2 = in->readUint16BE() + 4;
+ debug(9, "readRect: %d, %d, %d, %d", x1, y1, x2, y2);
+
return new Common::Rect(x1, y1, x2, y2);
}