diff options
| author | Jamieson Christian | 2002-12-18 17:14:05 +0000 |
|---|---|---|
| committer | Jamieson Christian | 2002-12-18 17:14:05 +0000 |
| commit | b708c7dd646b324c913adf808326ca438c01de00 (patch) | |
| tree | 3c4284375924f788824bc0cfaa8f6e58a3e858b7 /sound | |
| parent | f95ea3afdf392ca3bd39f8be8560cefd1b25cef3 (diff) | |
| download | scummvm-rg350-b708c7dd646b324c913adf808326ca438c01de00.tar.gz scummvm-rg350-b708c7dd646b324c913adf808326ca438c01de00.tar.bz2 scummvm-rg350-b708c7dd646b324c913adf808326ca438c01de00.zip | |
Miscellaneous cleanup.
svn-id: r6021
Diffstat (limited to 'sound')
| -rw-r--r-- | sound/mpu401.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/mpu401.h b/sound/mpu401.h index 0770e46a5a..b866cd2442 100644 --- a/sound/mpu401.h +++ b/sound/mpu401.h @@ -87,11 +87,11 @@ private: public: MidiDriver_MPU401(); - virtual void setTimerCallback (void *timer_param, void (*timer_proc) (void *)); - virtual uint32 getBaseTempo (void) { return 0x4A0000; } + void setTimerCallback (void *timer_param, void (*timer_proc) (void *)); + uint32 getBaseTempo (void) { return 0x4A0000; } - virtual MidiChannel *allocateChannel(); - virtual MidiChannel *getPercussionChannel() { return &_midi_channels [9]; } + MidiChannel *allocateChannel(); + MidiChannel *getPercussionChannel() { return &_midi_channels [9]; } }; |
