Save all chunks */
| 2286 | |
| 2287 | /** Save all chunks */ |
| 2288 | static void SlSaveChunks() |
| 2289 | { |
| 2290 | for (auto &ch : ChunkHandlers()) { |
| 2291 | SlSaveChunk(ch); |
| 2292 | } |
| 2293 | |
| 2294 | /* Terminator */ |
| 2295 | SlWriteUint32(0); |
| 2296 | } |
| 2297 | |
| 2298 | /** |
| 2299 | * Find the ChunkHandler that will be used for processing the found |
no test coverage detected