diff options
Diffstat (limited to 'sound/mpu401.h')
-rw-r--r-- | sound/mpu401.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sound/mpu401.h b/sound/mpu401.h index 5d87f52bc1..365c46c5a5 100644 --- a/sound/mpu401.h +++ b/sound/mpu401.h @@ -70,17 +70,15 @@ public: class MidiDriver_MPU401 : public MidiDriver { private: - typedef void (*TimerProc)(void *refCon); // Copied from class Timer - MidiChannel_MPU401 _midi_channels [16]; - TimerProc _timer_proc; + Timer::TimerProc _timer_proc; uint16 _channel_mask; public: MidiDriver_MPU401(); virtual void close(); - void setTimerCallback(void *timer_param, TimerProc timer_proc); + void setTimerCallback(void *timer_param, Timer::TimerProc timer_proc); uint32 getBaseTempo(void) { return 10000; } uint32 property(int prop, uint32 param); |