From b043d3e5678944e4960c8fe0c3d380825c41d0e5 Mon Sep 17 00:00:00 2001 From: bjarni Date: Wed, 8 Dec 2004 16:27:54 +0000 Subject: (svn r980) Fixed issues where MorphOS would get problems if AmigaOS would get a port, since MorphOS also have the flag __AMIGA__ defined (Tokai) --- unix.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'unix.c') 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 -- cgit v1.2.3-54-g00ecf