Merge pull request #696 from nkostelnik/master

fixed #961: Fixed mad behaviour in second stage of CCEaseBackInOut
This commit is contained in:
minggo 2012-01-31 02:17:57 -08:00
commit c1a53e2ed7
1 changed files with 1 additions and 1 deletions

View File

@ -1394,7 +1394,7 @@ namespace cocos2d {
else
{
time = time - 2;
m_pOther->update((time * time * ((overshoot + 1) + overshoot)) / 2 + 1);
m_pOther->update((time * time * ((overshoot + 1) * time + overshoot)) / 2 + 1);
}
}
}