aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra
diff options
context:
space:
mode:
Diffstat (limited to 'engines/kyra')
-rw-r--r--engines/kyra/sound_intern.h2
-rw-r--r--engines/kyra/sound_midi.cpp2
-rw-r--r--engines/kyra/sound_towns.cpp2
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;
}