aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorSven Hesse2010-08-08 00:58:00 +0000
committerSven Hesse2010-08-08 00:58:00 +0000
commitf447ddb36a2bf8b923083e96b51279d72306d22a (patch)
tree0bb009202f7c380d856fe7ee36bce0bd1ee77096 /engines
parentb13afba0536d16c3e37a2a887d582d9eeb42c8d1 (diff)
downloadscummvm-rg350-f447ddb36a2bf8b923083e96b51279d72306d22a.tar.gz
scummvm-rg350-f447ddb36a2bf8b923083e96b51279d72306d22a.tar.bz2
scummvm-rg350-f447ddb36a2bf8b923083e96b51279d72306d22a.zip
VIDEO: Fix compilation after the VideoDecoder::load signature change in r51725
svn-id: r51900
Diffstat (limited to 'engines')
-rw-r--r--engines/gob/videoplayer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/videoplayer.cpp b/engines/gob/videoplayer.cpp
index 2243468755..16d3a7c6fd 100644
--- a/engines/gob/videoplayer.cpp
+++ b/engines/gob/videoplayer.cpp
@@ -690,7 +690,7 @@ Graphics::CoktelDecoder *VideoPlayer::openVideo(const Common::String &file, Prop
return 0;
}
- if (!video->load(*stream)) {
+ if (!video->load(stream)) {
delete video;
return 0;
}