Codechange: mark chunks that are not stored as CH_READONLY
This makes it easier to spot chunks that have a save_proc that is a nullptr, but also prevents confusion, where it looks like the CH_ type of a chunk has influence on how it is being read. It is not, it is only used for saving.
This commit is contained in:

committed by
Patric Stout

parent
4c4b55ecbd
commit
8e91527251
@@ -225,7 +225,7 @@ static void Ptrs_WAYP()
|
||||
}
|
||||
|
||||
static const ChunkHandler waypoint_chunk_handlers[] = {
|
||||
{ 'CHKP', nullptr, Load_WAYP, Ptrs_WAYP, nullptr, CH_ARRAY },
|
||||
{ 'CHKP', nullptr, Load_WAYP, Ptrs_WAYP, nullptr, CH_READONLY },
|
||||
};
|
||||
|
||||
extern const ChunkHandlerTable _waypoint_chunk_handlers(waypoint_chunk_handlers);
|
||||
|
Reference in New Issue
Block a user