浏览代码

Merge pull request #1823 from mesilliac/fbx_export_footer_tweak

FBX Export: minor tweak to footer.
Kim Kulling 7 年之前
父节点
当前提交
26baa5c5b7
共有 1 个文件被更改,包括 0 次插入3 次删除
  1. 0 3
      code/FBXExporter.cpp

+ 0 - 3
code/FBXExporter.cpp

@@ -235,9 +235,6 @@ void FBXExporter::WriteBinaryFooter()
     outfile->Write(NULL_RECORD.c_str(), NULL_RECORD.size(), 1);
 
     outfile->Write(GENERIC_FOOTID.c_str(), GENERIC_FOOTID.size(), 1);
-    for (size_t i = 0; i < 4; ++i) {
-        outfile->Write("\x00", 1, 1);
-    }
 
     // here some padding is added for alignment to 16 bytes.
     // if already aligned, the full 16 bytes is added.