aboutsummaryrefslogtreecommitdiff
path: root/engines/m4
diff options
context:
space:
mode:
Diffstat (limited to 'engines/m4')
-rw-r--r--engines/m4/console.h2
-rw-r--r--engines/m4/midi.h2
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; }