summaryrefslogtreecommitdiff
path: root/src/settings.cpp
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2009-01-08 12:05:14 +0000
committerpeter1138 <peter1138@openttd.org>2009-01-08 12:05:14 +0000
commit020dbb180a11d27b2064640953f3960ede09f9c6 (patch)
treefce554a01119cd5d6c7bf58f770a96d121a41f35 /src/settings.cpp
parent45f1d83bc76d7d4d47885cf8489669300d072f8c (diff)
downloadopenttd-020dbb180a11d27b2064640953f3960ede09f9c6.tar.xz
(svn r14909) -Codechange: Remove global option for the extmidi driver and make it a driver parameter with the name cmd instead. This means if you have an "extmidi = ..." line in your config you must change it to "musicdriver = extmidi:cmd=...", in the [misc] section.
Diffstat (limited to 'src/settings.cpp')
-rw-r--r--src/settings.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/settings.cpp b/src/settings.cpp
index c26ad66ae..abbeec8c0 100644
--- a/src/settings.cpp
+++ b/src/settings.cpp
@@ -1127,10 +1127,6 @@ static int32 UpdateRconPassword(int32 p1)
/* End - Callback Functions */
-#ifndef EXTERNAL_PLAYER
-#define EXTERNAL_PLAYER "timidity"
-#endif
-
static const SettingDesc _music_settings[] = {
SDT_VAR(MusicFileSettings, playlist, SLE_UINT8, S, 0, 0, 0, 5, 1, STR_NULL, NULL),
SDT_VAR(MusicFileSettings, music_vol, SLE_UINT8, S, 0, 127, 0, 127, 1, STR_NULL, NULL),
@@ -1139,7 +1135,6 @@ static const SettingDesc _music_settings[] = {
SDT_LIST(MusicFileSettings, custom_2, SLE_UINT8, S, 0, NULL, STR_NULL, NULL),
SDT_BOOL(MusicFileSettings, playing, S, 0, true, STR_NULL, NULL),
SDT_BOOL(MusicFileSettings, shuffle, S, 0, false, STR_NULL, NULL),
- SDT_STR(MusicFileSettings, extmidi, SLE_STRB, S, 0, EXTERNAL_PLAYER, STR_NULL, NULL),
SDT_END()
};