Fixed: Initialize members in LWOFileData

pull/596/head
Richard 2015-06-30 23:39:33 -06:00
parent cd63601831
commit 3553c4aff2
1 changed files with 2 additions and 0 deletions

View File

@ -433,6 +433,7 @@ struct Texture
Texture() Texture()
: mClipIdx(UINT_MAX) : mClipIdx(UINT_MAX)
, mStrength (1.0f) , mStrength (1.0f)
, type()
, mUVChannelIndex ("unknown") , mUVChannelIndex ("unknown")
, mRealUVIndex (UINT_MAX) , mRealUVIndex (UINT_MAX)
, enabled (true) , enabled (true)
@ -499,6 +500,7 @@ struct Clip
Clip() Clip()
: type (UNSUPPORTED) : type (UNSUPPORTED)
, clipRef()
, idx (0) , idx (0)
, negate (false) , negate (false)
{} {}