Fixed: Initialize members in LWOAnimation

pull/596/head
Richard 2015-06-30 23:37:31 -06:00
parent d822930848
commit cd63601831
1 changed files with 6 additions and 2 deletions

View File

@ -113,7 +113,10 @@ enum PrePostBehaviour
struct Key
{
Key()
: inter (IT_LINE)
: time(),
value(),
inter (IT_LINE),
params()
{}
//! Current time
@ -141,7 +144,8 @@ struct Key
struct Envelope
{
Envelope()
: type (EnvelopeType_Unknown)
: index()
, type (EnvelopeType_Unknown)
, pre (PrePostBehaviour_Constant)
, post (PrePostBehaviour_Constant)