Remove debug print statement

This commit is contained in:
James Gregory 2013-04-08 21:41:21 -07:00
parent 41b5cfebb6
commit 29cfe512a3
1 changed files with 0 additions and 1 deletions

View File

@ -83,7 +83,6 @@ CCSprite* CCSprite::createWithTexture(CCTexture2D *pTexture, const CCRect& rect)
CCSprite* CCSprite::create(const char *pszFileName) CCSprite* CCSprite::create(const char *pszFileName)
{ {
printf("CCSprite::create(%s)\n", pszFileName);
CCSprite *pobSprite = new CCSprite(); CCSprite *pobSprite = new CCSprite();
if (pobSprite && pobSprite->initWithFile(pszFileName)) if (pobSprite && pobSprite->initWithFile(pszFileName))
{ {