diff options
Diffstat (limited to 'engines')
-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); |