| 4758 | } |
| 4759 | |
| 4760 | void WriteLevelGoalsChunk(CFILE *fp) { |
| 4761 | int start_pos; |
| 4762 | |
| 4763 | start_pos = StartChunk(fp, CHUNK_LEVEL_GOALS); |
| 4764 | Level_goals.SaveLevelGoalInfo(fp); |
| 4765 | EndChunk(fp, start_pos); |
| 4766 | } |
| 4767 | |
| 4768 | void WriteTerrainSkyAndLightChunk(CFILE *fp) { |
| 4769 | int i; |
no test coverage detected