summaryrefslogtreecommitdiff
path: root/settings.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2004-08-11 21:35:52 +0000
committertruelight <truelight@openttd.org>2004-08-11 21:35:52 +0000
commit0806a1ef751ddc7da59b3fc0ba33a1e74b69b659 (patch)
tree38c507dc38d3622747a42113e3dcbe4c48f811f2 /settings.c
parent6f8e7943c5568d4dfcc2dcac5a795e06ca4cf29f (diff)
downloadopenttd-0806a1ef751ddc7da59b3fc0ba33a1e74b69b659.tar.xz
(svn r21) Remove: PE_BYTE (bit-bools) in favour of PE_BOOL
Diffstat (limited to 'settings.c')
-rw-r--r--settings.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/settings.c b/settings.c
index 5275fb15b..259312cc2 100644
--- a/settings.c
+++ b/settings.c
@@ -845,7 +845,10 @@ static const SettingDesc patch_settings[] = {
{"build_in_pause", SDT_BOOL, (void*)false, (void*)offsetof(Patches, build_in_pause)},
- {"ai_disable_veh", SDT_UINT8, (void*)0, (void*)offsetof(Patches, ai_disable_veh)},
+ {"ai_disable_veh_train", SDT_BOOL, (void*)false, (void*)offsetof(Patches, ai_disable_veh_train)},
+ {"ai_disable_veh_roadveh", SDT_BOOL, (void*)false, (void*)offsetof(Patches, ai_disable_veh_roadveh)},
+ {"ai_disable_veh_aircraft", SDT_BOOL, (void*)false, (void*)offsetof(Patches, ai_disable_veh_aircraft)},
+ {"ai_disable_veh_ship", SDT_BOOL, (void*)false, (void*)offsetof(Patches, ai_disable_veh_ship)},
{"starting_date", SDT_UINT32, (void*)1950, (void*)offsetof(Patches, starting_date)},
{"colored_news_date", SDT_UINT32, (void*)2000, (void*)offsetof(Patches, colored_news_date)},