Browse Source

- FBX::ImportSettings: fix initialization list order.

Alexander Gessler 12 years ago
parent
commit
f6cb467275
1 changed files with 2 additions and 2 deletions
  1. 2 2
      code/FBXImportSettings.h

+ 2 - 2
code/FBXImportSettings.h

@@ -51,13 +51,13 @@ namespace FBX {
 struct ImportSettings 
 struct ImportSettings 
 {
 {
 	ImportSettings()
 	ImportSettings()
-		: readAllLayers(true)
+		: strictMode(true)
+		, readAllLayers(true)
 		, readAllMaterials()
 		, readAllMaterials()
 		, readMaterials(true)
 		, readMaterials(true)
 		, readCameras(true)
 		, readCameras(true)
 		, readLights(true)
 		, readLights(true)
 		, readAnimations(true)
 		, readAnimations(true)
-		, strictMode(true)
 		, readWeights(true)
 		, readWeights(true)
 		, preservePivots(true)
 		, preservePivots(true)
 		, optimizeEmptyAnimationCurves(true)
 		, optimizeEmptyAnimationCurves(true)