aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk
diff options
context:
space:
mode:
authorMax Horn2011-02-07 17:54:16 +0000
committerMax Horn2011-02-07 17:54:16 +0000
commit357c225f64ac91d63d31f23858f50471c158b065 (patch)
treeacf958a75466d4aacfd2bca37bdb382f33c707fb /engines/mohawk
parent2c00aed172f09285c8131d437b64de9d000d1762 (diff)
downloadscummvm-rg350-357c225f64ac91d63d31f23858f50471c158b065.tar.gz
scummvm-rg350-357c225f64ac91d63d31f23858f50471c158b065.tar.bz2
scummvm-rg350-357c225f64ac91d63d31f23858f50471c158b065.zip
VIDEO: Rename VideoDecoder::load() to loadStream()
svn-id: r55810
Diffstat (limited to 'engines/mohawk')
-rw-r--r--engines/mohawk/video.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/mohawk/video.cpp b/engines/mohawk/video.cpp
index 472b69a761..dba4482b2b 100644
--- a/engines/mohawk/video.cpp
+++ b/engines/mohawk/video.cpp
@@ -384,7 +384,7 @@ VideoHandle VideoManager::createVideoHandle(uint16 id, uint16 x, uint16 y, bool
// Otherwise, create a new entry
Video::QuickTimeDecoder *decoder = new Video::QuickTimeDecoder();
decoder->setChunkBeginOffset(_vm->getResourceOffset(ID_TMOV, id));
- decoder->load(_vm->getResource(ID_TMOV, id));
+ decoder->loadStream(_vm->getResource(ID_TMOV, id));
VideoEntry entry;
entry.clear();
@@ -429,7 +429,7 @@ VideoHandle VideoManager::createVideoHandle(const Common::String &filename, uint
return NULL_VID_HANDLE;
}
- entry->load(file);
+ entry->loadStream(file);
// Search for any deleted videos so we can take a formerly used slot
for (uint32 i = 0; i < _videoStreams.size(); i++)