pull/1252/head
AlexandreRouma 2023-10-29 02:40:34 +01:00
rodzic 4803271115
commit 794d6ff5ac
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -91,9 +91,9 @@ namespace riff {
file.write((char*)&desc.hdr.size, sizeof(desc.hdr.size));
file.seekp(pos);
// If parent chunk, increment its size by the size of the subchunk (adding the size of its header)
// If parent chunk, increment its size by the size of the sub-chunk plus the size of its header)
if (!chunks.empty()) {
chunks.top().hdr.size += desc.hdr.size + 8;
chunks.top().hdr.size += desc.hdr.size + sizeof(ChunkHeader);
}
}