aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support
diff options
context:
space:
mode:
authorPaul Gilbert2017-08-19 21:58:43 -0400
committerPaul Gilbert2017-08-19 21:58:43 -0400
commita62d1632b5de8f02e45b2c3a9f04eb87e7bfff50 (patch)
tree9d84cce77df507b6e2516740fad3524600cecee6 /engines/titanic/support
parenta21e8b9de2e4404ba10b01ddb3e87dd31e4a0895 (diff)
downloadscummvm-rg350-a62d1632b5de8f02e45b2c3a9f04eb87e7bfff50.tar.gz
scummvm-rg350-a62d1632b5de8f02e45b2c3a9f04eb87e7bfff50.tar.bz2
scummvm-rg350-a62d1632b5de8f02e45b2c3a9f04eb87e7bfff50.zip
TITANIC: Start end credits at bottom of screen, not the top
Diffstat (limited to 'engines/titanic/support')
-rw-r--r--engines/titanic/support/credit_text.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/support/credit_text.cpp b/engines/titanic/support/credit_text.cpp
index 98c3d9bf1d..6ee17a2b95 100644
--- a/engines/titanic/support/credit_text.cpp
+++ b/engines/titanic/support/credit_text.cpp
@@ -96,7 +96,7 @@ void CCreditText::setup() {
_screenManagerP->setFontNumber(oldFontNumber);
_groupIt = _groups.begin();
_lineIt = (*_groupIt)->_lines.begin();
- _yOffset = _objectP->getBounds().height() + _fontHeight * 2;
+ _yOffset = _objectP->_bounds.height() + _fontHeight * 2;
}
CString CCreditText::readLine(Common::SeekableReadStream *stream) {