(svn r19973) -Codechange: Add another procedure to chunk handlers for checking savegames (empty for now).

This commit is contained in:
frosch
2010-06-13 14:11:59 +00:00
parent 52c4af211a
commit fe063af382
27 changed files with 49 additions and 48 deletions

View File

@@ -234,6 +234,6 @@ static void Ptrs_ORDL()
}
extern const ChunkHandler _order_chunk_handlers[] = {
{ 'ORDR', Save_ORDR, Load_ORDR, Ptrs_ORDR, CH_ARRAY},
{ 'ORDL', Save_ORDL, Load_ORDL, Ptrs_ORDL, CH_ARRAY | CH_LAST},
{ 'ORDR', Save_ORDR, Load_ORDR, Ptrs_ORDR, NULL, CH_ARRAY},
{ 'ORDL', Save_ORDL, Load_ORDL, Ptrs_ORDL, NULL, CH_ARRAY | CH_LAST},
};