diff options
author | Max Horn | 2009-11-02 21:54:57 +0000 |
---|---|---|
committer | Max Horn | 2009-11-02 21:54:57 +0000 |
commit | 51933629d1f1a17839ddbb75b2b619effe117abb (patch) | |
tree | 7292b23e5ce3fb11e6b2bb360a3befbbf35b64d9 /engines/sword2 | |
parent | 400ee8c461e8060393b62be639c27dd3820dccd4 (diff) | |
download | scummvm-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/sword2')
-rw-r--r-- | engines/sword2/animation.cpp | 2 | ||||
-rw-r--r-- | engines/sword2/animation.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/sword2/animation.cpp b/engines/sword2/animation.cpp index 0f3d369ee9..629fc3d8bc 100644 --- a/engines/sword2/animation.cpp +++ b/engines/sword2/animation.cpp @@ -52,7 +52,7 @@ MoviePlayer::MoviePlayer(Sword2Engine *vm, Audio::Mixer *snd, OSystem *system, A _decoderType = decoderType; } -MoviePlayer:: ~MoviePlayer(void) { +MoviePlayer:: ~MoviePlayer() { delete _bgSoundHandle; delete _decoder; } diff --git a/engines/sword2/animation.h b/engines/sword2/animation.h index f2b44baaa0..7f9ae0ff2d 100644 --- a/engines/sword2/animation.h +++ b/engines/sword2/animation.h @@ -72,7 +72,7 @@ private: class MoviePlayer : public Graphics::VideoPlayer { public: MoviePlayer(Sword2Engine *vm, Audio::Mixer *snd, OSystem *system, Audio::SoundHandle *bgSoundHandle, Graphics::VideoDecoder *decoder, DecoderType decoderType); - virtual ~MoviePlayer(void); + virtual ~MoviePlayer(); bool load(const char *name); void play(MovieText *movieTexts, uint32 numMovieTexts, uint32 leadIn, uint32 leadOut); |