Fix derps (how did it even compile?)

This commit is contained in:
Phillip Stephens 2016-02-11 23:14:21 -08:00
parent 49a9886a7c
commit 10beb0052e
2 changed files with 2 additions and 2 deletions

View File

@ -153,7 +153,7 @@ bool CCEPulse::GetValue(int frame, Zeus::CColor& valOut) const
bool CCEParticleColor::GetValue(int frame, Zeus::CColor& colorOut) const
{
/* TODO: Do */
return false
return false;
}
}

View File

@ -343,7 +343,7 @@ bool CREConstantRange::GetValue(int frame, float& valOut) const
xc_max->GetValue(frame, max);
if (val > min && val < max)
x10_inRange->GetValue(Frame, valOut);
x10_inRange->GetValue(frame, valOut);
else
x14_outOfRange->GetValue(frame, valOut);