Saveload: Change type of read-only chunks to CH_READONLY

This commit is contained in:
Jonathan G Rennison
2024-07-08 18:23:22 +01:00
parent 8d9c988767
commit 3202fc2ce3
5 changed files with 6 additions and 6 deletions

View File

@@ -132,7 +132,7 @@ static void Load_NAME()
/** Chunk handlers related to strings. */
static const ChunkHandler name_chunk_handlers[] = {
{ 'NAME', nullptr, Load_NAME, nullptr, nullptr, CH_ARRAY },
{ 'NAME', nullptr, Load_NAME, nullptr, nullptr, CH_READONLY },
};
extern const ChunkHandlerTable _name_chunk_handlers(name_chunk_handlers);