aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/hsi.cpp
diff options
context:
space:
mode:
authorSimei Yin2017-08-02 16:35:09 +0200
committerSimei Yin2017-08-02 17:46:42 +0200
commit44c5f5e474f192f2a14b6430ecfe55601027119e (patch)
tree044d7bf1b1ce4539481eb78b2b9abaf48f7b9a56 /engines/sludge/hsi.cpp
parentc4fbb545a67635f58a7163bf01500f763e25df36 (diff)
downloadscummvm-rg350-44c5f5e474f192f2a14b6430ecfe55601027119e.tar.gz
scummvm-rg350-44c5f5e474f192f2a14b6430ecfe55601027119e.tar.bz2
scummvm-rg350-44c5f5e474f192f2a14b6430ecfe55601027119e.zip
SLUDGE: Refine debug channels
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());