FBX Export: add missing 0 value to file footer.
parent
54ca88b466
commit
a58f8e1c1a
|
@ -247,6 +247,11 @@ void FBXExporter::WriteBinaryFooter()
|
|||
outfile->Write("\x00", 1, 1);
|
||||
}
|
||||
|
||||
// not sure what this is, but it seems to always be 0 in modern files
|
||||
for (size_t i = 0; i < 4; ++i) {
|
||||
outfile->Write("\x00", 1, 1);
|
||||
}
|
||||
|
||||
// now the file version again
|
||||
{
|
||||
StreamWriterLE outstream(outfile);
|
||||
|
|
Loading…
Reference in New Issue