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/groovie | |
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/groovie')
-rw-r--r-- | engines/groovie/music.cpp | 2 | ||||
-rw-r--r-- | engines/groovie/music.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/groovie/music.cpp b/engines/groovie/music.cpp index 1532d10779..b504ffde1f 100644 --- a/engines/groovie/music.cpp +++ b/engines/groovie/music.cpp @@ -281,7 +281,7 @@ void MusicPlayerMidi::setTimerCallback(void *timer_param, Common::TimerManager:: _driver->setTimerCallback(timer_param, timer_proc); } -uint32 MusicPlayerMidi::getBaseTempo(void) { +uint32 MusicPlayerMidi::getBaseTempo() { if (_driver) return _driver->getBaseTempo(); else diff --git a/engines/groovie/music.h b/engines/groovie/music.h index fb1ddfe9c3..6302c81dcc 100644 --- a/engines/groovie/music.h +++ b/engines/groovie/music.h @@ -97,7 +97,7 @@ public: void send(uint32 b); void metaEvent(byte type, byte *data, uint16 length); void setTimerCallback(void *timer_param, Common::TimerManager::TimerProc timer_proc); - uint32 getBaseTempo(void); + uint32 getBaseTempo(); MidiChannel *allocateChannel(); MidiChannel *getPercussionChannel(); |