aboutsummaryrefslogtreecommitdiff
path: root/engines/gob
diff options
context:
space:
mode:
authorMax Horn2010-11-19 01:37:04 +0000
committerMax Horn2010-11-19 01:37:04 +0000
commita0df86955f80dedaa00e6f7593e96b90b697a83a (patch)
tree546f48f5edc6248ce3f2af65cf6a2b4727b7dd40 /engines/gob
parent785590e504ff2c275ee2a4101ecd4827666230b4 (diff)
downloadscummvm-rg350-a0df86955f80dedaa00e6f7593e96b90b697a83a.tar.gz
scummvm-rg350-a0df86955f80dedaa00e6f7593e96b90b697a83a.tar.bz2
scummvm-rg350-a0df86955f80dedaa00e6f7593e96b90b697a83a.zip
ALL: Push down deps on stream.h from .h to .cpp files
svn-id: r54358
Diffstat (limited to 'engines/gob')
-rw-r--r--engines/gob/videoplayer.cpp2
-rw-r--r--engines/gob/videoplayer.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/gob/videoplayer.cpp b/engines/gob/videoplayer.cpp
index 917bdc66c5..3d29c2ce26 100644
--- a/engines/gob/videoplayer.cpp
+++ b/engines/gob/videoplayer.cpp
@@ -500,7 +500,7 @@ bool VideoPlayer::hasEmbeddedFile(const Common::String &fileName, int slot) cons
return video->decoder->hasEmbeddedFile(fileName);
}
-Common::MemoryReadStream *VideoPlayer::getEmbeddedFile(const Common::String &fileName, int slot) {
+Common::SeekableReadStream *VideoPlayer::getEmbeddedFile(const Common::String &fileName, int slot) {
const Video *video = getVideoBySlot(slot);
if (!video)
return 0;
diff --git a/engines/gob/videoplayer.h b/engines/gob/videoplayer.h
index c154254455..45b3a7b82d 100644
--- a/engines/gob/videoplayer.h
+++ b/engines/gob/videoplayer.h
@@ -121,7 +121,7 @@ public:
const Common::List<Common::Rect> *getDirtyRects(int slot = 0) const;
bool hasEmbeddedFile(const Common::String &fileName, int slot = 0) const;
- Common::MemoryReadStream *getEmbeddedFile(const Common::String &fileName, int slot = 0);
+ Common::SeekableReadStream *getEmbeddedFile(const Common::String &fileName, int slot = 0);
int32 getSubtitleIndex(int slot = 0) const;