aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/wage/design.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/wage/design.cpp b/engines/wage/design.cpp
index e3cae0f633..9178482c8e 100644
--- a/engines/wage/design.cpp
+++ b/engines/wage/design.cpp
@@ -297,7 +297,7 @@ void Design::drawPolygon(Graphics::Surface *surface, Common::ReadStream &in,
int y2 = y1;
int x2 = x1;
int b = in.readSByte();
- if ((b & 0xff) == 0x80) {
+ if (b == -128) {
y2 = in.readSint16BE();
numBytes -= 3;
} else {
@@ -305,7 +305,7 @@ void Design::drawPolygon(Graphics::Surface *surface, Common::ReadStream &in,
numBytes -= 1;
}
b = in.readSByte();
- if ((b & 0xff) == 0x80) {
+ if (b == -128) {
x2 = in.readSint16BE();
numBytes -= 3;
} else {