mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 21:59:17 +00:00
WAGE: Simplify polygon reading code
This commit is contained in:
parent
33b8a265c5
commit
9d9fefb17a
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user