summaryrefslogtreecommitdiff
path: root/texteff.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-01-25 21:43:57 +0000
committertron <tron@openttd.org>2005-01-25 21:43:57 +0000
commit993a106679e4e682d9028fe44d1e5f9f1f178506 (patch)
treec41ff658c058ac5448d20ea2b75c1855bd443d93 /texteff.c
parent8e5e2e52fd67b0593c866e4777f9738d9fb6f368 (diff)
downloadopenttd-993a106679e4e682d9028fe44d1e5f9f1f178506.tar.xz
(svn r1676) Increase the size of TileIndex and TileIndexDiff to 32bits and adapt the save/load data and some other parts of the code to that change
WARNING: If i made any mistake here it WILL lead to corrupted savegames!
Diffstat (limited to 'texteff.c')
-rw-r--r--texteff.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/texteff.c b/texteff.c
index 408246b83..3e5f6fc89 100644
--- a/texteff.c
+++ b/texteff.c
@@ -351,7 +351,11 @@ void InitializeAnimatedTiles(void)
static void SaveLoad_ANIT(void)
{
- SlArray(_animated_tile_list, lengthof(_animated_tile_list), SLE_UINT16);
+ if (_sl.version < 6)
+ SlArray(_animated_tile_list, lengthof(_animated_tile_list),
+ SLE_FILE_U16 | SLE_VAR_U32);
+ else
+ SlArray(_animated_tile_list, lengthof(_animated_tile_list), SLE_UINT32);
}