summaryrefslogtreecommitdiff
path: root/thirdparty/assimp/code/FBX/FBXExportProperty.cpp
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2019-11-06 12:55:45 +0100
committerGitHub <noreply@github.com>2019-11-06 12:55:45 +0100
commitb30e6496bdc640422b5d708f27acb860a927425f (patch)
treed1eba0971b63f8f8e39e6f2752fc8d9944960318 /thirdparty/assimp/code/FBX/FBXExportProperty.cpp
parent245c99175c242bdc60a212cc84986b1a9ad5aa08 (diff)
parent5fb160c7c692c469488f11aca90a36ac3248dfee (diff)
Merge pull request #33347 from RevoluPowered/demo/assimp-importer-fbx
FBX Skinning and batch of fixes
Diffstat (limited to 'thirdparty/assimp/code/FBX/FBXExportProperty.cpp')
-rw-r--r--thirdparty/assimp/code/FBX/FBXExportProperty.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/thirdparty/assimp/code/FBX/FBXExportProperty.cpp b/thirdparty/assimp/code/FBX/FBXExportProperty.cpp
index f8593e6295..f2a63b72b9 100644
--- a/thirdparty/assimp/code/FBX/FBXExportProperty.cpp
+++ b/thirdparty/assimp/code/FBX/FBXExportProperty.cpp
@@ -59,11 +59,7 @@ namespace FBX {
FBXExportProperty::FBXExportProperty(bool v)
: type('C')
-, data(1) {
- data = {
- uint8_t(v)
- };
-}
+, data(1, uint8_t(v)) {}
FBXExportProperty::FBXExportProperty(int16_t v)
: type('Y')