summaryrefslogtreecommitdiff
path: root/driver.c
diff options
context:
space:
mode:
authorbjarni <bjarni@openttd.org>2005-10-07 16:48:53 +0000
committerbjarni <bjarni@openttd.org>2005-10-07 16:48:53 +0000
commit7ba69ad146a43275f6c45311bbecaf45acbcba3a (patch)
tree4084349064dbd2bca13da4647046f76c89dfc0fb /driver.c
parent9134e19d7eeb3a93ac42a61f47c6d2a95a84a1fa (diff)
downloadopenttd-7ba69ad146a43275f6c45311bbecaf45acbcba3a.tar.xz
(svn r3026) -Fix: [OSX] fixed bug that prevented dedicated servers from compiling (introduced in r3022)
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver.c b/driver.c
index 7f00a32a6..e6c6999a9 100644
--- a/driver.c
+++ b/driver.c
@@ -52,7 +52,7 @@ static const DriverDesc _music_driver_descs[] = {
#ifdef WIN32
M("win32", "Win32 MIDI Driver", &_win32_music_driver),
#endif
-#ifdef __APPLE__
+#if defined(__APPLE__) && !defined(DEDICATED)
M("qt", "QuickTime MIDI Driver", &_qtime_music_driver),
#endif
#ifdef UNIX