summaryrefslogtreecommitdiff
path: root/src/town_cmd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-01-19 14:00:04 +0000
committerrubidium <rubidium@openttd.org>2008-01-19 14:00:04 +0000
commit8b90809718d80ec0b24e05a2f20fde024cb03e1a (patch)
tree1bf8172b179835ed4016d0b718619139e4789224 /src/town_cmd.cpp
parentcc05abf382d74159e3b6d4948042553d199da58f (diff)
downloadopenttd-8b90809718d80ec0b24e05a2f20fde024cb03e1a.tar.xz
(svn r11925) -Fix (r122, r9867): loading old, pre savegame version 2, savegames.
Diffstat (limited to 'src/town_cmd.cpp')
-rw-r--r--src/town_cmd.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/town_cmd.cpp b/src/town_cmd.cpp
index a45928222..fa579dc59 100644
--- a/src/town_cmd.cpp
+++ b/src/town_cmd.cpp
@@ -2467,15 +2467,15 @@ static const SaveLoad _town_desc[] = {
SLE_CONDVAR(Town, grow_counter, SLE_UINT8, 0, 53),
SLE_CONDVAR(Town, growth_rate, SLE_UINT8, 0, 53),
- SLE_CONDVAR(Town, time_until_rebuild, SLE_UINT16, 54, SL_MAX_VERSION),
- SLE_CONDVAR(Town, grow_counter, SLE_UINT16, 54, SL_MAX_VERSION),
- SLE_CONDVAR(Town, growth_rate, SLE_INT16, 54, SL_MAX_VERSION),
+ SLE_CONDVAR(Town, time_until_rebuild, SLE_UINT16, 54, SL_MAX_VERSION),
+ SLE_CONDVAR(Town, grow_counter, SLE_UINT16, 54, SL_MAX_VERSION),
+ SLE_CONDVAR(Town, growth_rate, SLE_INT16, 54, SL_MAX_VERSION),
SLE_VAR(Town, fund_buildings_months, SLE_UINT8),
SLE_VAR(Town, road_build_months, SLE_UINT8),
- SLE_VAR(Town, exclusivity, SLE_UINT8),
- SLE_VAR(Town, exclusive_counter, SLE_UINT8),
+ SLE_CONDVAR(Town, exclusivity, SLE_UINT8, 2, SL_MAX_VERSION),
+ SLE_CONDVAR(Town, exclusive_counter, SLE_UINT8, 2, SL_MAX_VERSION),
SLE_CONDVAR(Town, larger_town, SLE_BOOL, 56, SL_MAX_VERSION),