File diff r25771:38227c416c21 → r25772:5ba83ce3a853
src/saveload/goal_sl.cpp
Show inline comments
 
@@ -43,11 +43,12 @@ static void Load_GOAL()
 
	while ((index = SlIterateArray()) != -1) {
 
		Goal *s = new (index) Goal();
 
		SlObject(s, slt);
 
	}
 
}
 

	
 
static const ChunkHandler goal_chunk_handlers[] = {
 
	{ 'GOAL', Save_GOAL, Load_GOAL, nullptr, nullptr, CH_TABLE },
 
static const ChunkHandler GOAL{ 'GOAL', Save_GOAL, Load_GOAL, nullptr, nullptr, CH_TABLE };
 
static const ChunkHandlerRef goal_chunk_handlers[] = {
 
	GOAL,
 
};
 

	
 
extern const ChunkHandlerTable _goal_chunk_handlers(goal_chunk_handlers);