(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

@@ -121,7 +121,7 @@ static void Save_AIPL()
}
extern const ChunkHandler _ai_chunk_handlers[] = {
{ 'AIPL', Save_AIPL, Load_AIPL, NULL, CH_ARRAY | CH_LAST},
{ 'AIPL', Save_AIPL, Load_AIPL, NULL, NULL, CH_ARRAY | CH_LAST},
};
#else
@@ -197,6 +197,6 @@ static void Load_AIPL()
}
extern const ChunkHandler _ai_chunk_handlers[] = {
{ 'AIPL', NULL, Load_AIPL, NULL, CH_ARRAY | CH_LAST},
{ 'AIPL', NULL, Load_AIPL, NULL, NULL, CH_ARRAY | CH_LAST},
};
#endif /* ENABLE_AI */