Skip to content

Commit

Permalink
Merge pull request EsotericSoftware#67 from BoldBigflank/master
Browse files Browse the repository at this point in the history
Fixed bug when run on an ipad
  • Loading branch information
NathanSweet committed Jun 18, 2013
2 parents d03ec84 + 554c318 commit cbf5013
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spine-cocos2dx/example/Classes/AppMacros.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ typedef struct tagResource {

static Resource smallResource = {cocos2d::CCSizeMake(480, 320), "iphone"};
static Resource mediumResource = {cocos2d::CCSizeMake(960, 640), "iphone-retina"};
static Resource largeResource = {cocos2d::CCSizeMake(1024, 768), "ipad"};
static Resource extralargeResource = {cocos2d::CCSizeMake(2048, 1536), "ipadhd"};
static Resource largeResource = {cocos2d::CCSizeMake(1024, 768), "iphone"};
static Resource extralargeResource = {cocos2d::CCSizeMake(2048, 1536), "iphone-retina"};

#if (TARGET_DESIGN_RESOLUTION_SIZE == DESIGN_RESOLUTION_480X320)
static cocos2d::CCSize designResolutionSize = cocos2d::CCSizeMake(480, 320);
Expand Down

0 comments on commit cbf5013

Please sign in to comment.