diff options
Diffstat (limited to 'engines/wage')
-rw-r--r-- | engines/wage/design.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/wage/design.cpp b/engines/wage/design.cpp index 8b3a661e47..1f2e8b76b0 100644 --- a/engines/wage/design.cpp +++ b/engines/wage/design.cpp @@ -83,8 +83,8 @@ void Design::paint(Graphics::Surface *canvas, Patterns &patterns, bool mask) { byte fillType = in.readByte(); byte borderThickness = in.readByte(); byte borderFillType = in.readByte(); - warning("fill: %d border: %d borderFill: %d", fillType, borderThickness, borderFillType); int type = in.readByte(); + warning("fill: %d border: %d borderFill: %d type: %d", fillType, borderThickness, borderFillType, type); switch (type) { case 4: drawRect(canvas, in, mask, patterns, fillType, borderThickness, borderFillType); @@ -114,7 +114,6 @@ void Design::paint(Graphics::Surface *canvas, Patterns &patterns, bool mask) { g_system->copyRectToScreen(canvas->getPixels(), canvas->pitch, 0, 0, canvas->w, canvas->h); g_system->updateScreen(); - } } |