[Scummvm-cvs-logs] SF.net SVN: scummvm: [21135] scummvm/trunk/engines/scumm/he/script_v72he.cpp

kirben at users.sourceforge.net kirben at users.sourceforge.net
Tue Mar 7 14:28:03 CET 2006


Revision: 21135
Author:   kirben
Date:     2006-03-07 14:27:14 -0800 (Tue, 07 Mar 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=21135&view=rev

Log Message:
-----------
Correct order of cases in o72_redimArray()

Modified Paths:
--------------
    scummvm/trunk/engines/scumm/he/script_v72he.cpp
Modified: scummvm/trunk/engines/scumm/he/script_v72he.cpp
===================================================================
--- scummvm/trunk/engines/scumm/he/script_v72he.cpp	2006-03-07 19:24:58 UTC (rev 21134)
+++ scummvm/trunk/engines/scumm/he/script_v72he.cpp	2006-03-07 22:27:14 UTC (rev 21135)
@@ -1987,12 +1987,12 @@
 	byte subOp = fetchScriptByte();
 
 	switch (subOp) {
+	case 4:
+		redimArray(fetchScriptWord(), 0, newX, 0, newY, kByteArray);
+		break;
 	case 5:
 		redimArray(fetchScriptWord(), 0, newX, 0, newY, kIntArray);
 		break;
-	case 4:
-		redimArray(fetchScriptWord(), 0, newX, 0, newY, kByteArray);
-		break;
 	case 6:
 		redimArray(fetchScriptWord(), 0, newX, 0, newY, kDwordArray);
 		break;


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