summaryrefslogtreecommitdiff
path: root/src/saveload/industry_sl.cpp
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2019-04-13 20:18:31 +0100
committerCharles Pigott <charlespigott@googlemail.com>2019-04-13 20:35:10 +0100
commit4f052fc2a4f22dbb08c2a58e262eca99f8281000 (patch)
treee34c031858a355aedee47e3532cd28fbd80cb6b7 /src/saveload/industry_sl.cpp
parent410b81537cd28e133acfc423efc88627f4454676 (diff)
downloadopenttd-4f052fc2a4f22dbb08c2a58e262eca99f8281000.tar.xz
Cleanup: Fix alignment after NULL -> nullptr change.
Diffstat (limited to 'src/saveload/industry_sl.cpp')
-rw-r--r--src/saveload/industry_sl.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/saveload/industry_sl.cpp b/src/saveload/industry_sl.cpp
index 391e5fbc3..34fa14542 100644
--- a/src/saveload/industry_sl.cpp
+++ b/src/saveload/industry_sl.cpp
@@ -184,8 +184,8 @@ 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},
+ { '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},
};