diff options
author | Max Horn | 2003-10-18 13:04:59 +0000 |
---|---|---|
committer | Max Horn | 2003-10-18 13:04:59 +0000 |
commit | 7eab653832b85f8da29ab4dab50f28948d040e37 (patch) | |
tree | 1c2f08ede084b491f7fd517fae22382e0b3ec2b7 /sound | |
parent | 1a8397a475479827b72b9423e6c9eedb8763746d (diff) | |
download | scummvm-rg350-7eab653832b85f8da29ab4dab50f28948d040e37.tar.gz scummvm-rg350-7eab653832b85f8da29ab4dab50f28948d040e37.tar.bz2 scummvm-rg350-7eab653832b85f8da29ab4dab50f28948d040e37.zip |
cleanup
svn-id: r10894
Diffstat (limited to 'sound')
-rw-r--r-- | sound/mididrv.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/mididrv.h b/sound/mididrv.h index e67643b36a..4cc9bf947e 100644 --- a/sound/mididrv.h +++ b/sound/mididrv.h @@ -24,6 +24,7 @@ #define SOUND_MIDIDRV_H #include "common/scummsys.h" +#include "common/timer.h" class MidiChannel; class SoundMixer; @@ -123,7 +124,7 @@ public: virtual void metaEvent (byte type, byte*data, uint16 length) { } // Timing functions - MidiDriver now operates timers - virtual void setTimerCallback (void *timer_param, void (*timer_proc) (void *)) = 0; + virtual void setTimerCallback (void *timer_param, TimerProc timer_proc) = 0; virtual uint32 getBaseTempo (void) = 0; // Channel allocation functions |