diff options
author | Eugene Sandulenko | 2015-12-19 22:41:22 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2015-12-27 15:40:56 +0100 |
commit | 27adb22abab116c8ae092d37164326194545e9b4 (patch) | |
tree | 13c9ddbd5c1175e5bbcd66e07bd95a77ccc4e249 /engines | |
parent | 36e4722922ed6d92bac3ef7fe6d45511fb1a17c2 (diff) | |
download | scummvm-rg350-27adb22abab116c8ae092d37164326194545e9b4.tar.gz scummvm-rg350-27adb22abab116c8ae092d37164326194545e9b4.tar.bz2 scummvm-rg350-27adb22abab116c8ae092d37164326194545e9b4.zip |
WAGE: Cleanup
Diffstat (limited to 'engines')
-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(); - } } |