mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-09 03:10:22 +00:00
TITANIC: Fix 2nd class room flags calculation
This commit is contained in:
parent
deab63fbdd
commit
44f0a19062
@ -260,7 +260,7 @@ uint CPetRooms::getRoomFlags() const {
|
||||
roomFlags.setElevatorNum(_elevatorNum == 1 || _elevatorNum == 2 ? 2 : 4);
|
||||
}
|
||||
|
||||
roomFlags.setRoomBits(((_roomNum - 1) & 1) + (_field1CC > 1 ? 3 : 2));
|
||||
roomFlags.setRoomBits(((_roomNum - 1) & 1) + (_field1CC > 1 ? 3 : 1));
|
||||
} else {
|
||||
roomFlags.setRoomBits(0);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user