소스 검색

- FBX::ImportSettings: fix initialization list order.

Alexander Gessler 12 년 전
부모
커밋
f6cb467275
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      code/FBXImportSettings.h

+ 2 - 2
code/FBXImportSettings.h

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