diff options
author | Paul Gilbert | 2017-08-19 21:58:43 -0400 |
---|---|---|
committer | Paul Gilbert | 2017-08-19 21:58:43 -0400 |
commit | a62d1632b5de8f02e45b2c3a9f04eb87e7bfff50 (patch) | |
tree | 9d84cce77df507b6e2516740fad3524600cecee6 | |
parent | a21e8b9de2e4404ba10b01ddb3e87dd31e4a0895 (diff) | |
download | scummvm-rg350-a62d1632b5de8f02e45b2c3a9f04eb87e7bfff50.tar.gz scummvm-rg350-a62d1632b5de8f02e45b2c3a9f04eb87e7bfff50.tar.bz2 scummvm-rg350-a62d1632b5de8f02e45b2c3a9f04eb87e7bfff50.zip |
TITANIC: Start end credits at bottom of screen, not the top
-rw-r--r-- | engines/titanic/support/credit_text.cpp | 2 |
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) { |