[Scummvm-cvs-logs] SF.net SVN: scummvm: [23626] scummvm/trunk/engines/kyra/vqa.cpp

eriktorbjorn at users.sourceforge.net eriktorbjorn at users.sourceforge.net
Sun Jul 30 11:10:57 CEST 2006


Revision: 23626
Author:   eriktorbjorn
Date:     2006-07-30 02:10:54 -0700 (Sun, 30 Jul 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=23626&view=rev

Log Message:
-----------
It's play(), not open(), that encounters the CMDS tag. At least in the intro
movie, which is the only one we currently play.

Modified Paths:
--------------
    scummvm/trunk/engines/kyra/vqa.cpp
Modified: scummvm/trunk/engines/kyra/vqa.cpp
===================================================================
--- scummvm/trunk/engines/kyra/vqa.cpp	2006-07-30 09:03:10 UTC (rev 23625)
+++ scummvm/trunk/engines/kyra/vqa.cpp	2006-07-30 09:10:54 UTC (rev 23626)
@@ -398,9 +398,6 @@
 			}
 
 			break;
-		case MKID_BE('CMDS'):	// Unused tag, always empty in kyra3
-			debugC(9, kDebugLevelMovie, "VQAMovie::open: skipping CMDS tag");
-			break;
 
 		default:
 			warning("VQAMovie::open: Unknown tag `%c%c%c%c'", (tag >> 24) & 0xFF, (tag >> 16) & 0xFF, (tag >> 8) & 0xFF, tag & 0xFF);
@@ -688,6 +685,11 @@
 				_file.seek(size, SEEK_CUR);
 				break;
 
+			case MKID_BE('CMDS'):	// Unused tag, always empty in kyra3
+				debugC(9, kDebugLevelMovie, "VQAMovie::play: skipping CMDS tag");
+				_file.seek(size, SEEK_CUR);
+				break;
+
 			default:
 				warning("VQAMovie::play: Unknown tag `%c%c%c%c'", (tag >> 24) & 0xFF, (tag >> 16) & 0xFF, (tag >> 8) & 0xFF, tag & 0xFF);
 				_file.seek(size, SEEK_CUR);


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