fix CCPointMake marco in CCPointExtension.h. The bug is reported in forum http://www.cocos2d-x.org/boards/6/topics/3730

This commit is contained in:
Walzer 2011-09-10 08:48:15 +08:00
parent ae056a07b1
commit 8082b91c0e
1 changed files with 12 additions and 12 deletions

View File

@ -52,7 +52,7 @@ namespace cocos2d {
@return CCPoint @return CCPoint
@since v0.7.2 @since v0.7.2
*/ */
#define ccp(__X__,__Y__) cocos2d::CCPointMake((float)__X__, (float)__Y__) #define ccp(__X__,__Y__) cocos2d::CCPointMake((float)(__X__), (float)(__Y__))
/** Returns opposite of point. /** Returns opposite of point.
@return CCPoint @return CCPoint