Changeset - r2303:508f564fba26
[Not reviewed]
master
0 2 0
tron - 19 years ago 2005-08-06 22:40:18
tron@openttd.org
(svn r2827) BeOS meets all prerequisites for extmidi
2 files changed with 1 insertions and 3 deletions:
0 comments (0 inline, 0 general)
driver.c
Show inline comments
 
@@ -52,7 +52,7 @@ static const DriverDesc _music_driver_de
 
	M("win32",   "Win32 MIDI Driver",       &_win32_music_driver),
 
#endif
 
#ifdef UNIX
 
#if !defined(__BEOS__) && !defined(__MORPHOS__) && !defined(__AMIGA__)
 
#if !defined(__MORPHOS__) && !defined(__AMIGA__)
 
	M("extmidi", "External MIDI Driver",    &_extmidi_music_driver),
 
#endif
 
#endif
music/extmidi.c
Show inline comments
 
/* $Id$ */
 

	
 
#ifndef __BEOS__
 
#ifndef __MORPHOS__
 
#include "../stdafx.h"
 
#include "../openttd.h"
 
@@ -110,4 +109,3 @@ const HalMusicDriver _extmidi_music_driv
 
};
 

	
 
#endif /* __MORPHOS__ */
 
#endif /* __BEOS__ */
0 comments (0 inline, 0 general)