aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/animation.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sherlock/animation.h')
-rw-r--r--engines/sherlock/animation.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/engines/sherlock/animation.h b/engines/sherlock/animation.h
index 1755edd97b..b6e1337975 100644
--- a/engines/sherlock/animation.h
+++ b/engines/sherlock/animation.h
@@ -45,10 +45,11 @@ private:
/**
* Checks for whether an animation is being played that has associated sound
*/
- const int *checkForSoundFrames(const Common::String &filename);
+ const int *checkForSoundFrames(const Common::String &filename, bool intro);
public:
Common::String _soundLibraryFilename;
Common::String _gfxLibraryFilename;
+
public:
Animation(SherlockEngine *vm);
@@ -75,9 +76,9 @@ public:
/**
* Play a full-screen animation
*/
- bool play(const Common::String &filename, int minDelay, int fade, bool setPalette, int speed);
+ bool play(const Common::String &filename, bool intro, int minDelay, int fade, bool setPalette, int speed);
- bool play3DO(const Common::String &filename, int minDelay, int fade, int speed);
+ bool play3DO(const Common::String &filename, bool intro, int minDelay, int fade, int speed);
};
} // End of namespace Sherlock