aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/rlf_animation.h
diff options
context:
space:
mode:
authorMarisa-Chan2014-02-04 08:32:02 +0700
committerMarisa-Chan2014-02-04 08:32:02 +0700
commit4a454ed763c24f94062be5dd57f43e0a84c1b0a2 (patch)
treecbfd6f403c780c696d86bc02397e93a89dba9870 /engines/zvision/rlf_animation.h
parent9c9f59d57060617d1acec71bd0d4066504f17c7a (diff)
downloadscummvm-rg350-4a454ed763c24f94062be5dd57f43e0a84c1b0a2.tar.gz
scummvm-rg350-4a454ed763c24f94062be5dd57f43e0a84c1b0a2.tar.bz2
scummvm-rg350-4a454ed763c24f94062be5dd57f43e0a84c1b0a2.zip
ZVISION: New search manager for handle right handle for ZIX-files.
Diffstat (limited to 'engines/zvision/rlf_animation.h')
-rw-r--r--engines/zvision/rlf_animation.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/zvision/rlf_animation.h b/engines/zvision/rlf_animation.h
index 35916de6cb..3764465786 100644
--- a/engines/zvision/rlf_animation.h
+++ b/engines/zvision/rlf_animation.h
@@ -37,6 +37,7 @@ namespace ZVision {
class RlfAnimation {
public:
RlfAnimation(const Common::String &fileName, bool stream = true);
+ RlfAnimation(Common::SeekableReadStream *rstream, bool stream);
~RlfAnimation();
private:
@@ -52,7 +53,7 @@ private:
};
private:
- Common::File _file;
+ Common::SeekableReadStream *_readStream;
bool _stream;
uint _lastFrameRead;