summaryrefslogtreecommitdiff
path: root/src/saveload/industry_sl.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2010-06-13 14:11:59 +0000
committerfrosch <frosch@openttd.org>2010-06-13 14:11:59 +0000
commit62ac13815438c6d502ccc665adca1db5ef473a1d (patch)
treebd6135004d8a8e92b8f7285ecbe95e19cd716784 /src/saveload/industry_sl.cpp
parent56fbbdeafd2321a1e1d3a9349d5d07cdaf4d64a7 (diff)
downloadopenttd-62ac13815438c6d502ccc665adca1db5ef473a1d.tar.xz
(svn r19973) -Codechange: Add another procedure to chunk handlers for checking savegames (empty for now).
Diffstat (limited to 'src/saveload/industry_sl.cpp')
-rw-r--r--src/saveload/industry_sl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/saveload/industry_sl.cpp b/src/saveload/industry_sl.cpp
index 42c8fda32..ef2540029 100644
--- a/src/saveload/industry_sl.cpp
+++ b/src/saveload/industry_sl.cpp
@@ -162,7 +162,7 @@ static void Ptrs_INDY()
}
extern const ChunkHandler _industry_chunk_handlers[] = {
- { 'INDY', Save_INDY, Load_INDY, Ptrs_INDY, CH_ARRAY},
- { 'IIDS', Save_IIDS, Load_IIDS, NULL, CH_ARRAY},
- { 'TIDS', Save_TIDS, Load_TIDS, NULL, CH_ARRAY | CH_LAST},
+ { 'INDY', Save_INDY, Load_INDY, Ptrs_INDY, NULL, CH_ARRAY},
+ { 'IIDS', Save_IIDS, Load_IIDS, NULL, NULL, CH_ARRAY},
+ { 'TIDS', Save_TIDS, Load_TIDS, NULL, NULL, CH_ARRAY | CH_LAST},
};