summaryrefslogtreecommitdiff
path: root/src/saveload/station_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/station_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/station_sl.cpp')
-rw-r--r--src/saveload/station_sl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/saveload/station_sl.cpp b/src/saveload/station_sl.cpp
index a1f12ab44..26c77f073 100644
--- a/src/saveload/station_sl.cpp
+++ b/src/saveload/station_sl.cpp
@@ -475,7 +475,7 @@ static void Ptrs_ROADSTOP()
}
extern const ChunkHandler _station_chunk_handlers[] = {
- { 'STNS', NULL, Load_STNS, Ptrs_STNS, CH_ARRAY },
- { 'STNN', Save_STNN, Load_STNN, Ptrs_STNN, CH_ARRAY },
- { 'ROAD', Save_ROADSTOP, Load_ROADSTOP, Ptrs_ROADSTOP, CH_ARRAY | CH_LAST},
+ { 'STNS', NULL, Load_STNS, Ptrs_STNS, NULL, CH_ARRAY },
+ { 'STNN', Save_STNN, Load_STNN, Ptrs_STNN, NULL, CH_ARRAY },
+ { 'ROAD', Save_ROADSTOP, Load_ROADSTOP, Ptrs_ROADSTOP, NULL, CH_ARRAY | CH_LAST},
};