aboutsummaryrefslogtreecommitdiff
path: root/engines/sword1/animation.h
diff options
context:
space:
mode:
authorMax Horn2009-11-02 21:54:57 +0000
committerMax Horn2009-11-02 21:54:57 +0000
commit51933629d1f1a17839ddbb75b2b619effe117abb (patch)
tree7292b23e5ce3fb11e6b2bb360a3befbbf35b64d9 /engines/sword1/animation.h
parent400ee8c461e8060393b62be639c27dd3820dccd4 (diff)
downloadscummvm-rg350-51933629d1f1a17839ddbb75b2b619effe117abb.tar.gz
scummvm-rg350-51933629d1f1a17839ddbb75b2b619effe117abb.tar.bz2
scummvm-rg350-51933629d1f1a17839ddbb75b2b619effe117abb.zip
Changed foo(void) to foo() in almost all non-backend source files
svn-id: r45616
Diffstat (limited to 'engines/sword1/animation.h')
-rw-r--r--engines/sword1/animation.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sword1/animation.h b/engines/sword1/animation.h
index 1a380d40b0..629198a63d 100644
--- a/engines/sword1/animation.h
+++ b/engines/sword1/animation.h
@@ -70,9 +70,9 @@ private:
class MoviePlayer : public Graphics::VideoPlayer {
public:
MoviePlayer(SwordEngine *vm, Text *textMan, Audio::Mixer *snd, OSystem *system, Audio::SoundHandle *bgSoundHandle, Graphics::VideoDecoder *decoder, DecoderType decoderType);
- virtual ~MoviePlayer(void);
+ virtual ~MoviePlayer();
bool load(uint32 id);
- void play(void);
+ void play();
protected:
SwordEngine *_vm;
Text *_textMan;