Skip to content

Commit

Permalink
WAGE: Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Dec 27, 2015
1 parent 36e4722 commit 27adb22
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions engines/wage/design.cpp
Expand Up @@ -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);
Expand Down Expand Up @@ -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();

}
}

Expand Down

0 comments on commit 27adb22

Please sign in to comment.