mirror of
https://github.com/overte-org/overte.git
synced 2025-04-19 13:43:49 +02:00
Replace magic number for compressed flag in FBXWriter
This commit is contained in:
parent
c5852dfbe8
commit
2a4f7712c3
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ void writeVector(QDataStream& out, char ch, QVector<T> vec) {
|
|||
compressedDataWithLength.constData() + sizeof(uint32_t), compressedDataWithLength.size() - sizeof(uint32_t));
|
||||
|
||||
if (compressedData.size() < data.size()) {
|
||||
out << (int32_t)1;
|
||||
out << FBX_PROPERTY_COMPRESSED_FLAG;
|
||||
out << (int32_t)compressedData.size();
|
||||
out.writeRawData(compressedData.constData(), compressedData.size());
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue