aboutsummaryrefslogtreecommitdiff
path: root/graphics/animation.h
diff options
context:
space:
mode:
authorRobert Göffringmann2004-12-05 02:55:06 +0000
committerRobert Göffringmann2004-12-05 02:55:06 +0000
commit5d32a2c034a1e9036c9dcc721b6bfe27c46eb904 (patch)
treeeab152166ad59cdb6e5760599f1a6784ee522685 /graphics/animation.h
parent095549125b303db33702f30aeacb924e0b703ea0 (diff)
downloadscummvm-rg350-5d32a2c034a1e9036c9dcc721b6bfe27c46eb904.tar.gz
scummvm-rg350-5d32a2c034a1e9036c9dcc721b6bfe27c46eb904.tar.bz2
scummvm-rg350-5d32a2c034a1e9036c9dcc721b6bfe27c46eb904.zip
added support for an international BS1 cutscene pack (which we didn't release yet)
svn-id: r15983
Diffstat (limited to 'graphics/animation.h')
-rw-r--r--graphics/animation.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/animation.h b/graphics/animation.h
index 727c8bd298..5227827cf9 100644
--- a/graphics/animation.h
+++ b/graphics/animation.h
@@ -117,7 +117,7 @@ public:
BaseAnimationState(SoundMixer *snd, OSystem *sys, int width, int height);
virtual ~BaseAnimationState();
- bool init(const char *name);
+ bool init(const char *name, void *audioArg = NULL);
bool decodeFrame();
#ifndef BACKEND_8BIT
void invalidateLookup(bool rebuild);
@@ -126,6 +126,7 @@ public:
protected:
bool checkPaletteSwitch();
virtual void drawYUV(int width, int height, byte *const *dat) = 0;
+ virtual AudioStream *createAudioStream(const char *name, void *arg);
#ifdef BACKEND_8BIT
void buildLookup(int p, int lines);