[Scummvm-cvs-logs] SF.net SVN: scummvm: [25761] scummvm/trunk/engines/agos/script.cpp

kirben at users.sourceforge.net kirben at users.sourceforge.net
Wed Feb 21 13:33:36 CET 2007


Revision: 25761
          http://scummvm.svn.sourceforge.net/scummvm/?rev=25761&view=rev
Author:   kirben
Date:     2007-02-21 04:33:34 -0800 (Wed, 21 Feb 2007)

Log Message:
-----------
Remove Amiga OCS specific code for copy protection screen in Simon 1, since it no longer required.

Modified Paths:
--------------
    scummvm/trunk/engines/agos/script.cpp

Modified: scummvm/trunk/engines/agos/script.cpp
===================================================================
--- scummvm/trunk/engines/agos/script.cpp	2007-02-21 11:46:35 UTC (rev 25760)
+++ scummvm/trunk/engines/agos/script.cpp	2007-02-21 12:33:34 UTC (rev 25761)
@@ -441,12 +441,7 @@
 	// 53: random
 	uint var = getVarWrapper();
 	uint value = (uint16)getVarOrWord();
-
-	// Copy protection subtitles aren't displayed in Amiga OCS version
-	if ((getFeatures() & GF_32COLOR) && var == 51 && value == 8)
-		writeVariable(var, 4);
-	else
-		writeVariable(var, _rnd.getRandomNumber(value - 1));
+	writeVariable(var, _rnd.getRandomNumber(value - 1));
 }
 
 void AGOSEngine::o_goto() {


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