aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support
diff options
context:
space:
mode:
authorPaul Gilbert2017-06-09 21:58:54 -0400
committerPaul Gilbert2017-06-09 21:58:54 -0400
commit3bd579bdd4b5b406960db353436e2ab8642dfcf9 (patch)
treeb22a7f0196d2075d538295afcf7b775ca9310fe7 /engines/titanic/support
parent782479ab2b2fc0ed8a6ff04e5bf5ba489dce25e2 (diff)
downloadscummvm-rg350-3bd579bdd4b5b406960db353436e2ab8642dfcf9.tar.gz
scummvm-rg350-3bd579bdd4b5b406960db353436e2ab8642dfcf9.tar.bz2
scummvm-rg350-3bd579bdd4b5b406960db353436e2ab8642dfcf9.zip
TITANIC: Fix jerkiness in end credits
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 b5789fbd06..b5b4fbe4f1 100644
--- a/engines/titanic/support/credit_text.cpp
+++ b/engines/titanic/support/credit_text.cpp
@@ -203,7 +203,7 @@ bool CCreditText::draw() {
CCreditLines::iterator lineIt = _lineIt;
Point textPos;
- for (textPos.y = _rect.top + _yOffset; textPos.y <= _rect.bottom;
+ for (textPos.y = _rect.top + _yOffset - yDiff; textPos.y <= _rect.bottom;
textPos.y += _fontHeight) {
int textR = _textR + _destR * _counter / 200;
int textG = _textG + _destG * _counter / 200;