Fixed: Initialize members in XFileHelper

pull/596/head
Richard 2015-06-30 23:29:19 -06:00
parent 3543bb7e5f
commit 5cc43ecfad
1 changed files with 6 additions and 2 deletions

View File

@ -87,9 +87,13 @@ struct Material
aiColor3D mEmissive;
std::vector<TexEntry> mTextures;
size_t sceneIndex; ///< the index under which it was stored in the scene's material list
size_t sceneIndex; ///< the index under which it was stored in the scene's material list
Material() { mIsReference = false; sceneIndex = SIZE_MAX; }
Material()
: mIsReference(false),
mSpecularExponent(),
sceneIndex(SIZE_MAX)
{}
};
/** Helper structure to represent a bone weight */