From 27adb22abab116c8ae092d37164326194545e9b4 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sat, 19 Dec 2015 22:41:22 +0100 Subject: WAGE: Cleanup --- engines/wage/design.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'engines/wage') 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(); - } } -- cgit v1.2.3