创建动画的时候遇到一个问题

运行这个代码的时候出现这个错误,应该怎么解决

源代码是这样的:
CCSpriteFrame* frame0 = CCSpriteFrame::create(“Dedsp0,bmp”,CCRectMake(0,0,72,80));
CCSpriteFrame* frame1 = CCSpriteFrame::create(“Dedsp0,bmp”,CCRectMake(72,0,72,80));
CCSpriteFrame* frame2 = CCSpriteFrame::create(“Dedsp0,bmp”,CCRectMake(72,0,72,80));
CCSpriteFrame* frame3 = CCSpriteFrame::create(“Dedsp0,bmp”,CCRectMake(72,0,72,80));

	CCArray* pArray = CCArray::createWithCapacity(4);
	pArray->addObject(frame0);
	pArray->addObject(frame1);
	pArray->addObject(frame2);
	pArray->addObject(frame3);

	CCAnimation* pAnimation = CCAnimation::create(pArray,0.5f);
	CC_BREAK_IF(pAnimation);

	CCSprite* dspSprite = CCSprite::createWithSpriteFrame(frame0);
	CC_BREAK_IF(dspSprite);

	dspSprite->setPosition(ccp(size.width/2,size.height/2));
	this->addChild(dspSprite,1);

	CCAnimate* pAnimate = CCAnimate::actionWithAnimation(pAnimation);
	CC_BREAK_IF(pAnimate);
	
	dspSprite->runAction(CCRepeatForever::create(pAnimate));