diff options
author | rubidium <rubidium@openttd.org> | 2011-03-05 10:47:49 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2011-03-05 10:47:49 +0000 |
commit | 2636a4809b27bac69448e583889056e56938decd (patch) | |
tree | 018c6650a8efc6925f234be18b5ad1dea1c38361 /src/table/music_settings.ini | |
parent | cb3fa759f338fb5e8aee36ec78e8f41c40bace66 (diff) | |
download | openttd-2636a4809b27bac69448e583889056e56938decd.tar.xz |
(svn r22197) -Cleanup: remove the distinction between conditional and non-conditional settings; with default from and to savegame versions all can be conditional. They previously were as well; the non-conditional ones were macros of the conditionals with to/from saveload versions hardcoded
Diffstat (limited to 'src/table/music_settings.ini')
-rw-r--r-- | src/table/music_settings.ini | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/table/music_settings.ini b/src/table/music_settings.ini index cb83725e6..05530ab05 100644 --- a/src/table/music_settings.ini +++ b/src/table/music_settings.ini @@ -3,9 +3,9 @@ static const SettingDesc _music_settings[] = { [post-amble] }; [templates] -SDT_BOOL = SDT_BOOL($base, $var, $flags, $guiflags, $def, $str, $proc), -SDT_VAR = SDT_VAR($base, $var, $type, $flags, $guiflags, $def, $min, $max, $interval, $str, $proc), -SDT_LIST = SDT_LIST($base, $var, $type, $flags, $guiflags, $def, $str, $proc), +SDT_BOOL = SDT_BOOL($base, $var, $flags, $guiflags, $def, $str, $proc, $from, $to), +SDT_VAR = SDT_VAR($base, $var, $type, $flags, $guiflags, $def, $min, $max, $interval, $str, $proc, $from, $to), +SDT_LIST = SDT_LIST($base, $var, $type, $flags, $guiflags, $def, $str, $proc, $from, $to), SDT_END = SDT_END() [defaults] |