WAGE: Added detection for The Phoenix

This commit is contained in:
Eugene Sandulenko 2016-03-01 11:30:38 +01:00
parent f2e2d0f05d
commit 589ffcd3b9
3 changed files with 6 additions and 0 deletions

View file

@ -81,6 +81,8 @@ Common::Rect *readRect(Common::SeekableReadStream *in) {
y2 = in->readUint16BE() + 4;
x2 = in->readUint16BE() + 4;
debug(9, "readRect: %d, %d, %d, %d", x1, y1, x2, y2);
return new Common::Rect(x1, y1, x2, y2);
}