tabs/space + transcription typofix

This commit is contained in:
Azaezel 2016-10-14 13:40:53 -05:00
parent d50762cbef
commit 2f5321ddfb

View file

@ -297,7 +297,8 @@ inline F32 mEaseInCirc (F32 t, F32 b, F32 c, F32 d)
inline F32 mEaseOutCirc (F32 t, F32 b, F32 c, F32 d) inline F32 mEaseOutCirc (F32 t, F32 b, F32 c, F32 d)
{ {
t/=d; t/=d;
return c * mSqrt(1 - (t-1)*t) + b; t--;
return c * mSqrt(1 - (t)*t) + b;
}; };
// circular easing in/out - acceleration until halfway, then deceleration // circular easing in/out - acceleration until halfway, then deceleration