I want to ask about Multi-touch.

When I use ccTouchesEnded,releasing of the screen with 2 points at the same time,but the result is that only 1 point is released.
The codes is:

void PlayLayer::ccTouchesEnded(cocos2d::CCSet pTouches, cocos2d::CCEventpEvent)
{

for(CCSetIterator iterTouch = pTouches~~>begin; iterTouch != pTouches~~>end(); iterTouch++)
{
CCTouch *pCurTouch = (cocos2d::CCTouch*)(*iterTouch);
CCPoint ptTouch = pCurTouch->locationInView(pCurTouch->view());
CCLog(“ptTouch(f,f)”,ptTouch.x,ptTouch.y);
}
}

Which platform did you test?

I test on the andriod platform.