summaryrefslogtreecommitdiff
path: root/unix.c
diff options
context:
space:
mode:
authorbjarni <bjarni@openttd.org>2004-12-08 16:27:54 +0000
committerbjarni <bjarni@openttd.org>2004-12-08 16:27:54 +0000
commitb043d3e5678944e4960c8fe0c3d380825c41d0e5 (patch)
treeafe64b67abbd356109d06712405e5bf262c89f32 /unix.c
parent945ceb06fc166379a9d0ffa4dfafe68894cba9e6 (diff)
downloadopenttd-b043d3e5678944e4960c8fe0c3d380825c41d0e5.tar.xz
(svn r980) Fixed issues where MorphOS would get problems if AmigaOS would get a port, since MorphOS also have the flag __AMIGA__ defined (Tokai)
Diffstat (limited to 'unix.c')
-rw-r--r--unix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix.c b/unix.c
index c8b300a4c..46fdfbcb7 100644
--- a/unix.c
+++ b/unix.c
@@ -351,8 +351,8 @@ const DriverDesc _sound_driver_descs[] = {
const DriverDesc _music_driver_descs[] = {
#ifndef __BEOS__
-#ifndef __MORPHOS__
-// MorphOS have no music support
+#if !defined(__MORPHOS__) && !defined(__AMIGA__)
+// MorphOS and AmigaOS have no music support
{"extmidi", "External MIDI Driver", &_extmidi_music_driver, EXTMIDI_PRI},
#endif
#endif