summaryrefslogtreecommitdiff
path: root/src/saveload/industry_sl.cpp
diff options
context:
space:
mode:
authorglx22 <glx@openttd.org>2021-05-02 22:41:34 +0200
committerLoïc Guilloux <glx22@users.noreply.github.com>2021-06-06 19:35:06 +0200
commitc27afdf3f6b8e7e073b70d4935ca1c871855f3ca (patch)
tree8aa6a64805d1856c873b8a053c2d98a9d1b8585f /src/saveload/industry_sl.cpp
parent3559e55b9145c5b6c146003b357a158c73efee4e (diff)
downloadopenttd-c27afdf3f6b8e7e073b70d4935ca1c871855f3ca.tar.xz
Codechange: Remove FOR_ALL_CHUNK_HANDLERS
Co-Authored-By: Patric Stout <truebrain@openttd.org>
Diffstat (limited to 'src/saveload/industry_sl.cpp')
-rw-r--r--src/saveload/industry_sl.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/saveload/industry_sl.cpp b/src/saveload/industry_sl.cpp
index a59524de6..c75674069 100644
--- a/src/saveload/industry_sl.cpp
+++ b/src/saveload/industry_sl.cpp
@@ -176,10 +176,12 @@ static void Load_ITBL()
}
}
-extern const ChunkHandler _industry_chunk_handlers[] = {
- { 'INDY', Save_INDY, Load_INDY, Ptrs_INDY, nullptr, CH_ARRAY},
- { 'IIDS', Save_IIDS, Load_IIDS, nullptr, nullptr, CH_ARRAY},
- { 'TIDS', Save_TIDS, Load_TIDS, nullptr, nullptr, CH_ARRAY},
- { 'IBLD', LoadSave_IBLD, LoadSave_IBLD, nullptr, nullptr, CH_RIFF},
- { 'ITBL', Save_ITBL, Load_ITBL, nullptr, nullptr, CH_ARRAY | CH_LAST},
+static const ChunkHandler industry_chunk_handlers[] = {
+ { 'INDY', Save_INDY, Load_INDY, Ptrs_INDY, nullptr, CH_ARRAY },
+ { 'IIDS', Save_IIDS, Load_IIDS, nullptr, nullptr, CH_ARRAY },
+ { 'TIDS', Save_TIDS, Load_TIDS, nullptr, nullptr, CH_ARRAY },
+ { 'IBLD', LoadSave_IBLD, LoadSave_IBLD, nullptr, nullptr, CH_RIFF },
+ { 'ITBL', Save_ITBL, Load_ITBL, nullptr, nullptr, CH_ARRAY },
};
+
+extern const ChunkHandlerTable _industry_chunk_handlers(industry_chunk_handlers);