[Scummvm-cvs-logs] scummvm master -> a2d28dcf0f13a6296a43c9e3489d66ef560f4ea4

Strangerke Strangerke at scummvm.org
Sat May 4 20:18:01 CEST 2013


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
a2d28dcf0f HOPKINS: Add another workaround for the BeOS version, so it displays at least "The End"


Commit: a2d28dcf0f13a6296a43c9e3489d66ef560f4ea4
    https://github.com/scummvm/scummvm/commit/a2d28dcf0f13a6296a43c9e3489d66ef560f4ea4
Author: Strangerke (strangerke at scummvm.org)
Date: 2013-05-04T11:16:47-07:00

Commit Message:
HOPKINS: Add another workaround for the BeOS version, so it displays at least "The End"

Changed paths:
    engines/hopkins/hopkins.cpp



diff --git a/engines/hopkins/hopkins.cpp b/engines/hopkins/hopkins.cpp
index 91b3a17..8955be5 100644
--- a/engines/hopkins/hopkins.cpp
+++ b/engines/hopkins/hopkins.cpp
@@ -2373,7 +2373,12 @@ void HopkinsEngine::loadCredits() {
 	}
 
 	if (!_fileIO->fileExists(filename)) {
-		_globals->_creditsLineNumb = 0;
+		_globals->_creditsLineNumb = 1;
+		_globals->_creditsItem[0]._color = '1';
+		_globals->_creditsItem[0]._actvFl = true;
+		_globals->_creditsItem[0]._linePosY = _globals->_creditsPosY;
+		strcpy((char *)_globals->_creditsItem[0]._line, "The End");
+		_globals->_creditsItem[0]._lineSize = 7;
 		return;
 	}
 






More information about the Scummvm-git-logs mailing list