fixed issue with CCEaseBackInOut being erratic on the second stage of the transititon

This commit is contained in:
Nicholas Kostelnik 2012-01-31 09:57:58 +00:00
parent a02e3b8c60
commit edaf2cf269
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);
}
}
}