* Close an opened chunk file. * * @param index The index given by ChunkFile_Open() of the file. */
| 1007 | * @param index The index given by ChunkFile_Open() of the file. |
| 1008 | */ |
| 1009 | void ChunkFile_Close(uint8 index) |
| 1010 | { |
| 1011 | if (index == FILE_INVALID) return; |
| 1012 | |
| 1013 | File_Close(index); |
| 1014 | } |
| 1015 | |
| 1016 | /** |
| 1017 | * Seek to the given chunk inside a chunk file. |
no test coverage detected