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/kyra | |
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/kyra')
-rw-r--r-- | engines/kyra/sound_intern.h | 2 | ||||
-rw-r--r-- | engines/kyra/sound_midi.cpp | 2 | ||||
-rw-r--r-- | engines/kyra/sound_towns.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/engines/kyra/sound_intern.h b/engines/kyra/sound_intern.h index 994dd5a76e..98991dadd9 100644 --- a/engines/kyra/sound_intern.h +++ b/engines/kyra/sound_intern.h @@ -129,7 +129,7 @@ public: void metaEvent(byte type, byte *data, uint16 length) {} void setTimerCallback(void *timerParam, void (*timerProc)(void *)) { } - uint32 getBaseTempo(void); + uint32 getBaseTempo(); //Channel allocation functions MidiChannel *allocateChannel() { return 0; } diff --git a/engines/kyra/sound_midi.cpp b/engines/kyra/sound_midi.cpp index 24ff956052..0c4affd162 100644 --- a/engines/kyra/sound_midi.cpp +++ b/engines/kyra/sound_midi.cpp @@ -51,7 +51,7 @@ public: void metaEvent(byte type, byte *data, uint16 length); void setTimerCallback(void *timerParam, void (*timerProc)(void *)) { _output->setTimerCallback(timerParam, timerProc); } - uint32 getBaseTempo(void) { return _output->getBaseTempo(); } + uint32 getBaseTempo() { return _output->getBaseTempo(); } // DUMMY int open() { return 0; } diff --git a/engines/kyra/sound_towns.cpp b/engines/kyra/sound_towns.cpp index 7d46497e39..1d6470b7cc 100644 --- a/engines/kyra/sound_towns.cpp +++ b/engines/kyra/sound_towns.cpp @@ -3958,7 +3958,7 @@ void SoundTowns::send(uint32 b) { _driver->send(b); } -uint32 SoundTowns::getBaseTempo(void) { +uint32 SoundTowns::getBaseTempo() { return _driver ? _driver->getBaseTempo() : 0; } |