Skip to content

Commit

Permalink
TITANIC: Fix jerkiness in end credits
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Jun 10, 2017
1 parent 782479a commit 3bd579b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/titanic/support/credit_text.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit 3bd579b

Please sign in to comment.