(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

@@ -1985,8 +1985,8 @@ void CheckConfig()
}
extern const ChunkHandler _setting_chunk_handlers[] = {
{ 'OPTS', NULL, Load_OPTS, NULL, CH_RIFF},
{ 'PATS', Save_PATS, Load_PATS, NULL, CH_RIFF | CH_LAST},
{ 'OPTS', NULL, Load_OPTS, NULL, NULL, CH_RIFF},
{ 'PATS', Save_PATS, Load_PATS, NULL, NULL, CH_RIFF | CH_LAST},
};
static bool IsSignedVarMemType(VarType vt)