diff options
| -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; | 
