(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 56fbbdeafd
commit 62ac138154
27 changed files with 49 additions and 48 deletions

View File

@@ -192,6 +192,6 @@ static void Load_TOWN()
}
extern const ChunkHandler _town_chunk_handlers[] = {
{ 'HIDS', Save_HOUSEIDS, Load_HOUSEIDS, NULL, CH_ARRAY },
{ 'CITY', Save_TOWN, Load_TOWN, NULL, CH_ARRAY | CH_LAST},
{ 'HIDS', Save_HOUSEIDS, Load_HOUSEIDS, NULL, NULL, CH_ARRAY },
{ 'CITY', Save_TOWN, Load_TOWN, NULL, NULL, CH_ARRAY | CH_LAST},
};