aboutsummaryrefslogtreecommitdiff
path: root/engines/lab/anim.h
diff options
context:
space:
mode:
authorFilippos Karapetis2015-12-18 01:52:41 +0200
committerWillem Jan Palenstijn2015-12-23 21:34:08 +0100
commitbc25b6be552a929c4b3221538ebbfb256de5ecf6 (patch)
tree6490e90b8b18cd62186c4940bf388f62fca107a6 /engines/lab/anim.h
parent832d87e0bf1cb7dbfd2d3e7217b5d8fe0fefa8b7 (diff)
downloadscummvm-rg350-bc25b6be552a929c4b3221538ebbfb256de5ecf6.tar.gz
scummvm-rg350-bc25b6be552a929c4b3221538ebbfb256de5ecf6.tar.bz2
scummvm-rg350-bc25b6be552a929c4b3221538ebbfb256de5ecf6.zip
LAB: Change the graphics and audio code to use Common::File directly
Diffstat (limited to 'engines/lab/anim.h')
-rw-r--r--engines/lab/anim.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/lab/anim.h b/engines/lab/anim.h
index 6e568a40a3..0d2497bb73 100644
--- a/engines/lab/anim.h
+++ b/engines/lab/anim.h
@@ -69,8 +69,8 @@ private:
bool _donePal;
uint16 _frameNum;
bool _playOnce;
- byte *_diffFile;
- byte *_diffFileStart;
+ Common::File *_diffFile;
+ uint32 _diffFileStart;
uint32 _size;
bool _stopPlayingEnd;
uint16 _sampleSpeed;
@@ -88,7 +88,7 @@ public:
bool _noPalChange; // Don't change the palette.
BitMap _rawDiffBM;
- void readDiff(byte *buffer, bool playOnce, bool onlyDiffData = false);
+ void readDiff(Common::File *diffFile, bool playOnce, bool onlyDiffData = false);
void diffNextFrame(bool onlyDiffData = false);
void stopDiff();
void stopDiffEnd();