Skip to content

Commit

Permalink
issue #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 0f7c8ab commit 21f05c2
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 21f05c2

Please sign in to comment.