aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/pet_control/pet_glyphs.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2016-04-21 23:08:29 -0400
committerPaul Gilbert2016-07-10 16:11:40 -0400
commite4bc0b260155009918efa736f4f859571ebd671e (patch)
tree51b87e2b2f1cee105854aaf0ed42b56443aaec9c /engines/titanic/pet_control/pet_glyphs.cpp
parent282ed45c77e81f1a5d2f0663c516d455dd7a8032 (diff)
downloadscummvm-rg350-e4bc0b260155009918efa736f4f859571ebd671e.tar.gz
scummvm-rg350-e4bc0b260155009918efa736f4f859571ebd671e.tar.bz2
scummvm-rg350-e4bc0b260155009918efa736f4f859571ebd671e.zip
TITANIC: Fix horizontal placement of PET glyphs
Diffstat (limited to 'engines/titanic/pet_control/pet_glyphs.cpp')
-rw-r--r--engines/titanic/pet_control/pet_glyphs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/pet_control/pet_glyphs.cpp b/engines/titanic/pet_control/pet_glyphs.cpp
index 4669a1f1ec..af4679fa97 100644
--- a/engines/titanic/pet_control/pet_glyphs.cpp
+++ b/engines/titanic/pet_control/pet_glyphs.cpp
@@ -159,7 +159,7 @@ void CPetGlyphs::draw(CScreenManager *screenManager) {
}
Point CPetGlyphs::getPosition(int index) {
- Point tempPoint(37 + index * 58, 375);
+ Point tempPoint(37 + index * 70, 375);
return tempPoint;
}