mirror of https://github.com/AxioDL/metaforce.git
Fix derps (how did it even compile?)
This commit is contained in:
parent
49a9886a7c
commit
10beb0052e
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue