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/m4 | |
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/m4')
-rw-r--r-- | engines/m4/console.h | 2 | ||||
-rw-r--r-- | engines/m4/midi.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/m4/console.h b/engines/m4/console.h index 45c9d1abec..3ec8637d2b 100644 --- a/engines/m4/console.h +++ b/engines/m4/console.h @@ -35,7 +35,7 @@ class M4Engine; class Console : public GUI::Debugger { public: Console(M4Engine *vm); - virtual ~Console(void); + virtual ~Console(); private: bool cmdLoadScene(int argc, const char **argv); diff --git a/engines/m4/midi.h b/engines/m4/midi.h index 8e157cfbd1..6f99f1d868 100644 --- a/engines/m4/midi.h +++ b/engines/m4/midi.h @@ -60,7 +60,7 @@ public: void metaEvent(byte type, byte *data, uint16 length); void setTimerCallback(void *timerParam, void (*timerProc)(void *)) { } - uint32 getBaseTempo(void) { return _driver ? _driver->getBaseTempo() : 0; } + uint32 getBaseTempo() { return _driver ? _driver->getBaseTempo() : 0; } //Channel allocation functions MidiChannel *allocateChannel() { return 0; } |