aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorRuediger Hanke2002-12-25 12:36:29 +0000
committerRuediger Hanke2002-12-25 12:36:29 +0000
commit9e0e918397a6772ae6ab5e9220a797750657973e (patch)
tree8e9b3279eeeee955d3ef91e7305eddefa4c9a4bf /sound
parent4a405b497a99a0608d14c071505440cb3adca90a (diff)
downloadscummvm-rg350-9e0e918397a6772ae6ab5e9220a797750657973e.tar.gz
scummvm-rg350-9e0e918397a6772ae6ab5e9220a797750657973e.tar.bz2
scummvm-rg350-9e0e918397a6772ae6ab5e9220a797750657973e.zip
Fix midi driver thread for MorphOS
svn-id: r6123
Diffstat (limited to 'sound')
-rw-r--r--sound/mpu401.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/mpu401.cpp b/sound/mpu401.cpp
index c3c7d1a2b9..001c28f204 100644
--- a/sound/mpu401.cpp
+++ b/sound/mpu401.cpp
@@ -79,6 +79,7 @@ void MidiDriver_MPU401::setTimerCallback (void *timer_param, void (*timer_proc)
}
}
+#if !defined(__MORPHOS__)
int MidiDriver_MPU401::midi_driver_thread(void *param)
{
MidiDriver_MPU401 *mid = (MidiDriver_MPU401 *)param;
@@ -102,4 +103,5 @@ int MidiDriver_MPU401::midi_driver_thread(void *param)
return 0;
}
+#endif