summaryrefslogtreecommitdiff
path: root/src/saveload/industry_sl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/saveload/industry_sl.cpp')
-rw-r--r--src/saveload/industry_sl.cpp15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/saveload/industry_sl.cpp b/src/saveload/industry_sl.cpp
index 1e4a77ee4..25a3ca4ab 100644
--- a/src/saveload/industry_sl.cpp
+++ b/src/saveload/industry_sl.cpp
@@ -148,8 +148,17 @@ static void Load_TIDS()
}
}
+static void Ptrs_INDY()
+{
+ Industry *i;
+
+ FOR_ALL_INDUSTRIES(i) {
+ SlObject(i, _industry_desc);
+ }
+}
+
extern const ChunkHandler _industry_chunk_handlers[] = {
- { 'INDY', Save_INDY, Load_INDY, CH_ARRAY},
- { 'IIDS', Save_IIDS, Load_IIDS, CH_ARRAY},
- { 'TIDS', Save_TIDS, Load_TIDS, CH_ARRAY | CH_LAST},
+ { '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},
};