[Scummvm-git-logs] scummvm master -> 20a3a08a905a51d4d38809bf9c8a4a48cb5884cd

dreammaster dreammaster at scummvm.org
Sat Aug 12 03:07:39 CEST 2017


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
20a3a08a90 TITANIC: Fix rendering bottom line of room glyphs


Commit: 20a3a08a905a51d4d38809bf9c8a4a48cb5884cd
    https://github.com/scummvm/scummvm/commit/20a3a08a905a51d4d38809bf9c8a4a48cb5884cd
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2017-08-11T21:07:33-04:00

Commit Message:
TITANIC: Fix rendering bottom line of room glyphs

Changed paths:
    engines/titanic/pet_control/pet_rooms_glyphs.cpp


diff --git a/engines/titanic/pet_control/pet_rooms_glyphs.cpp b/engines/titanic/pet_control/pet_rooms_glyphs.cpp
index a69704c..1a5d5e1 100644
--- a/engines/titanic/pet_control/pet_rooms_glyphs.cpp
+++ b/engines/titanic/pet_control/pet_rooms_glyphs.cpp
@@ -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);
 





More information about the Scummvm-git-logs mailing list