aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/kyra/vqa.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/engines/kyra/vqa.cpp b/engines/kyra/vqa.cpp
index b31ea979bf..b0974ae213 100644
--- a/engines/kyra/vqa.cpp
+++ b/engines/kyra/vqa.cpp
@@ -398,9 +398,6 @@ 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);
@@ -688,6 +685,11 @@ void VQAMovie::play() {
_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);