diff options
author | Paul Gilbert | 2017-06-09 21:58:54 -0400 |
---|---|---|
committer | Paul Gilbert | 2017-06-09 21:58:54 -0400 |
commit | 3bd579bdd4b5b406960db353436e2ab8642dfcf9 (patch) | |
tree | b22a7f0196d2075d538295afcf7b775ca9310fe7 | |
parent | 782479ab2b2fc0ed8a6ff04e5bf5ba489dce25e2 (diff) | |
download | scummvm-rg350-3bd579bdd4b5b406960db353436e2ab8642dfcf9.tar.gz scummvm-rg350-3bd579bdd4b5b406960db353436e2ab8642dfcf9.tar.bz2 scummvm-rg350-3bd579bdd4b5b406960db353436e2ab8642dfcf9.zip |
TITANIC: Fix jerkiness in end credits
-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 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; |