[Scummvm-cvs-logs] SF.net SVN: scummvm:[52672] scummvm/trunk/engines/gob/inter_fascin.cpp

strangerke at users.sourceforge.net strangerke at users.sourceforge.net
Sat Sep 11 01:40:09 CEST 2010


Revision: 52672
          http://scummvm.svn.sourceforge.net/scummvm/?rev=52672&view=rev
Author:   strangerke
Date:     2010-09-10 23:40:08 +0000 (Fri, 10 Sep 2010)

Log Message:
-----------
GOB: Fix 2nd Hebrew protection screen in Fascination

Add a workaround to avoid a crash when failing the protection check
This only applies for the 2nd protection screen in the Hebrew version
which is used when the intro is not skipped

Modified Paths:
--------------
    scummvm/trunk/engines/gob/inter_fascin.cpp

Modified: scummvm/trunk/engines/gob/inter_fascin.cpp
===================================================================
--- scummvm/trunk/engines/gob/inter_fascin.cpp	2010-09-10 22:08:48 UTC (rev 52671)
+++ scummvm/trunk/engines/gob/inter_fascin.cpp	2010-09-10 23:40:08 UTC (rev 52672)
@@ -137,7 +137,8 @@
 		// This results in a crash in Scummvm. This workaround avoids that crash.
 		if (_vm->getPlatform() == Common::kPlatformPC) {
 			if ((!scumm_stricmp(_vm->_game->_curTotFile, "INTRO1.TOT") && (blockPos == 3533)) ||
-				(!scumm_stricmp(_vm->_game->_curTotFile, "INTRO2.TOT") && (blockPos == 3519)))
+				(!scumm_stricmp(_vm->_game->_curTotFile, "INTRO2.TOT") && (blockPos == 3519)) ||
+				(!scumm_stricmp(_vm->_game->_curTotFile, "INTRO2.TOT") && (blockPos == 3265)))  //PC Hebrew
 				_terminate = 1;
 		}
 	} while (!flag && !_break && !_terminate && !_vm->shouldQuit());


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list