summaryrefslogtreecommitdiff
path: root/settings.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2004-08-12 17:49:16 +0000
committertruelight <truelight@openttd.org>2004-08-12 17:49:16 +0000
commit210ada1b514a173de5a2426f99cd25c95b23efaf (patch)
treeacb434304df44af2e1d0721b08cad09b677cf847 /settings.c
parent4b0d4dd3fe13e78e1766ac06ab891f9d39f1d0aa (diff)
downloadopenttd-210ada1b514a173de5a2426f99cd25c95b23efaf.tar.xz
(svn r27) -Fix: [1006715] Autorenew issues
-Add: PE_CURRENCY to patchmenu
Diffstat (limited to 'settings.c')
-rw-r--r--settings.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/settings.c b/settings.c
index 259312cc2..cbd0ffe44 100644
--- a/settings.c
+++ b/settings.c
@@ -837,7 +837,8 @@ static const SettingDesc patch_settings[] = {
{"servint_aircraft", SDT_UINT16, (void*)100,(void*)offsetof(Patches, servint_aircraft)},
{"autorenew", SDT_BOOL, (void*)false,(void*)offsetof(Patches, autorenew)},
- {"autorenew_months", SDT_UINT16, (void*)-12, (void*)offsetof(Patches, autorenew_months)},
+ {"autorenew_months", SDT_INT16, (void*)-6, (void*)offsetof(Patches, autorenew_months)},
+ {"autorenew_money", SDT_INT32, (void*)100000, (void*)offsetof(Patches, autorenew_money)},
{"new_pathfinding", SDT_BOOL, (void*)false, (void*)offsetof(Patches, new_pathfinding)},
{"pf_maxlength", SDT_UINT16, (void*)512, (void*)offsetof(Patches, pf_maxlength)},