diff options
author | Max Horn | 2011-02-07 17:54:16 +0000 |
---|---|---|
committer | Max Horn | 2011-02-07 17:54:16 +0000 |
commit | 357c225f64ac91d63d31f23858f50471c158b065 (patch) | |
tree | acf958a75466d4aacfd2bca37bdb382f33c707fb /engines/gob | |
parent | 2c00aed172f09285c8131d437b64de9d000d1762 (diff) | |
download | scummvm-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/gob')
-rw-r--r-- | engines/gob/videoplayer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/videoplayer.cpp b/engines/gob/videoplayer.cpp index f412d823f0..8222c99ef3 100644 --- a/engines/gob/videoplayer.cpp +++ b/engines/gob/videoplayer.cpp @@ -842,7 +842,7 @@ Common::String VideoPlayer::findFile(const Common::String &file, Properties &pro return 0; } - if (!video->load(stream)) { + if (!video->loadStream(stream)) { delete video; return 0; } |