aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/vqa.cpp
diff options
context:
space:
mode:
authorOystein Eftevaag2006-07-28 11:42:53 +0000
committerOystein Eftevaag2006-07-28 11:42:53 +0000
commit3c4b13ed33a928352634c4785fa92a5df10ff378 (patch)
tree3a9ad67cda6c3ba65d2470f737665e6fcdf5fcf7 /engines/kyra/vqa.cpp
parenta69ac7717d66e00d373465235dce6cf834c78591 (diff)
downloadscummvm-rg350-3c4b13ed33a928352634c4785fa92a5df10ff378.tar.gz
scummvm-rg350-3c4b13ed33a928352634c4785fa92a5df10ff378.tar.bz2
scummvm-rg350-3c4b13ed33a928352634c4785fa92a5df10ff378.zip
Moves the kyra2 code to kyra2.cpp and kyra2.h, renames WSAMovieV3 to WSAMovie2 (kyra2 uses the same format), renames a define in kyra3.h for consistency, and adds a case for CMDS in the VQA player to avoid the constant warning (the tag is always present and empty). Credit/blame for the last one goes to Clemmy :). Starting kyra2 will now show the title animation.
svn-id: r23614
Diffstat (limited to 'engines/kyra/vqa.cpp')
-rw-r--r--engines/kyra/vqa.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/kyra/vqa.cpp b/engines/kyra/vqa.cpp
index 0918066bc7..b31ea979bf 100644
--- a/engines/kyra/vqa.cpp
+++ b/engines/kyra/vqa.cpp
@@ -398,6 +398,9 @@ bool VQAMovie::open(const char *filename) {
}
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);