Skip to content

Commit

Permalink
TITANIC: Fix rendering bottom line of room glyphs
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Aug 12, 2017
1 parent 78a1d34 commit 20a3a08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/titanic/pet_control/pet_rooms_glyphs.cpp
Expand Up @@ -90,7 +90,7 @@ void CPetRoomsGlyph::drawAt(CScreenManager *screenManager, const Point &pt, bool
drawObjects(floorBits & 15, destPt, screenManager);
destPt.y += 10;
drawObjects(roomBits >> 3, destPt, screenManager);
destPt.y += 7;
destPt.y += 10;
drawObjects(((roomBits & 7) << 1) + (roomFlags.getBit0() ? 1 : 0),
destPt, screenManager);

Expand Down

0 comments on commit 20a3a08

Please sign in to comment.