diff --git a/tests/test.ios/test.xcodeproj/project.pbxproj.REMOVED.git-id b/tests/test.ios/test.xcodeproj/project.pbxproj.REMOVED.git-id index 9f541a67a4..ed6f9219ea 100644 --- a/tests/test.ios/test.xcodeproj/project.pbxproj.REMOVED.git-id +++ b/tests/test.ios/test.xcodeproj/project.pbxproj.REMOVED.git-id @@ -1 +1 @@ -33ad1fd0694c56b7b34f9ebd3e563782e572c270 \ No newline at end of file +231d95df880ff006a4a6af1f4330efd2a21b7fc7 \ No newline at end of file diff --git a/tests/tests/BugsTest/Bug-350.cpp b/tests/tests/BugsTest/Bug-350.cpp index cdf2454b53..3918c0f0d5 100644 --- a/tests/tests/BugsTest/Bug-350.cpp +++ b/tests/tests/BugsTest/Bug-350.cpp @@ -10,7 +10,7 @@ bool Bug350Layer::init() if (BugsTestBaseLayer::init()) { CCSize size = CCDirector::sharedDirector()->getWinSize(); - CCSprite *background = CCSprite::spriteWithFile("Default.png"); + CCSprite *background = CCSprite::spriteWithFile("Hello.png"); background->setPosition(ccp(size.width/2, size.height/2)); addChild(background); return true; diff --git a/tests/tests/TileMapTest/TileMapTest.cpp b/tests/tests/TileMapTest/TileMapTest.cpp index c4b8ed0526..dcea7b3e94 100644 --- a/tests/tests/TileMapTest/TileMapTest.cpp +++ b/tests/tests/TileMapTest/TileMapTest.cpp @@ -1398,7 +1398,7 @@ TMXGIDObjectsTest::TMXGIDObjectsTest() CCLOG("Contentsize: %f, %f", s.width, s.height); CCLOG("----> Iterating over all the group objets"); - CCTMXObjectGroup *group = map->objectGroupNamed("Object Layer 1"); + //CCTMXObjectGroup *group = map->objectGroupNamed("Object Layer 1"); } @@ -1432,9 +1432,9 @@ void TMXGIDObjectsTest::draw() ccDrawLine(ccp(x, y), ccp(x + width, y)); ccDrawLine(ccp(x + width, y), ccp(x + width, y + height)); - ccDrawLine(ccp(x + width,y + height), ccp(x,y + height)); - ccDrawLine(ccp(x,y + height), ccp(x,y)); - + ccDrawLine(ccp(x + width,y + height), ccp(x,y + height)); + ccDrawLine(ccp(x,y + height), ccp(x,y)); + glLineWidth(1); } }