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