aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter_v6.cpp
diff options
context:
space:
mode:
authorSven Hesse2010-08-08 00:33:59 +0000
committerSven Hesse2010-08-08 00:33:59 +0000
commita802e1e64f56b5c6b0534a481e84418078b2699f (patch)
tree6d4becdefb786c0f277859be491f0624554645c7 /engines/gob/inter_v6.cpp
parentb5b47d50c8984361965c49eead999eb7bc672171 (diff)
downloadscummvm-rg350-a802e1e64f56b5c6b0534a481e84418078b2699f.tar.gz
scummvm-rg350-a802e1e64f56b5c6b0534a481e84418078b2699f.tar.bz2
scummvm-rg350-a802e1e64f56b5c6b0534a481e84418078b2699f.zip
VIDEO: Stub a VideoDecoder-like CoktelDecoder
This creates a new CoktelDecoder class using the VideoDecoder interface, which will eventually become the new way to decode PreIMD, IMD and VMD videos. Since the VideoPlayer in gob is not yet ready for this, we're disabling all video playback in the gob engine for now. svn-id: r51850
Diffstat (limited to 'engines/gob/inter_v6.cpp')
-rw-r--r--engines/gob/inter_v6.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/inter_v6.cpp b/engines/gob/inter_v6.cpp
index cbc831b5a1..9c03ea0b95 100644
--- a/engines/gob/inter_v6.cpp
+++ b/engines/gob/inter_v6.cpp
@@ -231,7 +231,7 @@ bool Inter_v6::o6_loadCursor(OpFuncParams &params) {
return false;
}
- int16 framesCount = _vm->_vidPlayer->getFramesCount(vmdSlot);
+ int16 framesCount = _vm->_vidPlayer->getFrameCount(vmdSlot);
for (int i = 0; i < framesCount; i++) {
_vm->_vidPlayer->slotPlay(vmdSlot);