diff options
author | Eugene Sandulenko | 2019-11-10 19:49:02 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2019-11-10 19:50:53 +0100 |
commit | 6cad53e5460066cff49fda1c7abd8a431607d478 (patch) | |
tree | 899354c3e04db87a051ea9662a8953508f6c62e1 /engines/fullpipe | |
parent | baa7e0f5f3ea862ad1217d204f98c2fee1b69343 (diff) | |
download | scummvm-rg350-6cad53e5460066cff49fda1c7abd8a431607d478.tar.gz scummvm-rg350-6cad53e5460066cff49fda1c7abd8a431607d478.tar.bz2 scummvm-rg350-6cad53e5460066cff49fda1c7abd8a431607d478.zip |
FULLPIPE: Added more debug output
Diffstat (limited to 'engines/fullpipe')
-rw-r--r-- | engines/fullpipe/gfx.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp index 8407009679..d06baaaa1c 100644 --- a/engines/fullpipe/gfx.cpp +++ b/engines/fullpipe/gfx.cpp @@ -444,6 +444,8 @@ bool Picture::load(MfcArchive &file) { _width = file.readUint32LE(); _height = file.readUint32LE(); + debug(7, "Picture::load: x: %d y: %d, w: %d, h: %d", _x, _y, _width, _height); + _mflags |= 1; _memoryObject2.reset(new MemoryObject2); |