aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/hsi.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sludge/hsi.cpp')
-rw-r--r--engines/sludge/hsi.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sludge/hsi.cpp b/engines/sludge/hsi.cpp
index e5bb990730..cd366ef9ee 100644
--- a/engines/sludge/hsi.cpp
+++ b/engines/sludge/hsi.cpp
@@ -50,9 +50,9 @@ bool HSIDecoder::loadStream(Common::SeekableReadStream &stream) {
int32 transCol = _reserve > 0 ? -1 : 63519;
int n;
uint16 width = stream.readUint16BE();
- debug(kSludgeDebugGraphics, "picWidth : %i", width);
+ debugC(2, kSludgeDebugGraphics, "picWidth : %i", width);
uint16 height = stream.readUint16BE();
- debug(kSludgeDebugGraphics, "picHeight : %i", height);
+ debugC(2, kSludgeDebugGraphics, "picHeight : %i", height);
_surface = new Graphics::Surface();
_surface->create(width, height, *g_sludge->getScreenPixelFormat());