Skip to content

Commit

Permalink
issue cocos2d#903: fix a compiling error
Browse files Browse the repository at this point in the history
  • Loading branch information
minggo committed Dec 22, 2011
1 parent 4c1aa06 commit 1c22e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cocos2dx/platform/android/jni/TouchesJni.cpp
Expand Up @@ -116,7 +116,7 @@ static CCTouch *s_pTouches[MAX_TOUCHES] = { NULL };
if (pTouch)
{
pTouch->SetTouchInfo(0, (x[i] - rcRect.origin.x) / fScreenScaleFactor ,
(y[i] - rcRect.origin.y) / fScreenScaleFactor), id[i]);
(y[i] - rcRect.origin.y) / fScreenScaleFactor, id[i]);
set.addObject(pTouch);
}
else
Expand Down

0 comments on commit 1c22e91

Please sign in to comment.