diff --git a/cocos2dx/platform/airplay/CCFileUtils_airplay.cpp b/cocos2dx/platform/airplay/CCFileUtils_airplay.cpp index d06d7ce2a2..81e3aa9c1f 100644 --- a/cocos2dx/platform/airplay/CCFileUtils_airplay.cpp +++ b/cocos2dx/platform/airplay/CCFileUtils_airplay.cpp @@ -340,5 +340,11 @@ bool CCFileUtils::getIsPopupNotify() return s_bPopupNotify; } +std::string CCFileUtils::getWriteablePath() +{ + // fixed me, what path can airplay can write + return string(""); +} + NS_CC_END; diff --git a/template/xcode3/cocos2d-x_app/___PROJECTNAME___.xcodeproj/project.pbxproj.REMOVED.git-id b/template/xcode3/cocos2d-x_app/___PROJECTNAME___.xcodeproj/project.pbxproj.REMOVED.git-id index d1714a6f22..e4f814cb2f 100644 --- a/template/xcode3/cocos2d-x_app/___PROJECTNAME___.xcodeproj/project.pbxproj.REMOVED.git-id +++ b/template/xcode3/cocos2d-x_app/___PROJECTNAME___.xcodeproj/project.pbxproj.REMOVED.git-id @@ -1 +1 @@ -8c9f77a384b0e17df11cc843e89538b603e91f12 \ No newline at end of file +d1962bc646d8650f27302fd6c32dff2d9d4ab6a5 \ No newline at end of file diff --git a/template/xcode3/cocos2d-x_box2d_app/___PROJECTNAME___.xcodeproj/project.pbxproj.REMOVED.git-id b/template/xcode3/cocos2d-x_box2d_app/___PROJECTNAME___.xcodeproj/project.pbxproj.REMOVED.git-id index 84d0c6879b..00ac984a78 100644 --- a/template/xcode3/cocos2d-x_box2d_app/___PROJECTNAME___.xcodeproj/project.pbxproj.REMOVED.git-id +++ b/template/xcode3/cocos2d-x_box2d_app/___PROJECTNAME___.xcodeproj/project.pbxproj.REMOVED.git-id @@ -1 +1 @@ -2fc55bb5f8692cca82e907045481456851797347 \ No newline at end of file +6c636339fa5aff82bfca50d9da220b50af5c0053 \ No newline at end of file diff --git a/template/xcode3/cocos2d-x_chipmunk_app/___PROJECTNAME___.xcodeproj/project.pbxproj.REMOVED.git-id b/template/xcode3/cocos2d-x_chipmunk_app/___PROJECTNAME___.xcodeproj/project.pbxproj.REMOVED.git-id index 3cffd104c8..a890abc41f 100644 --- a/template/xcode3/cocos2d-x_chipmunk_app/___PROJECTNAME___.xcodeproj/project.pbxproj.REMOVED.git-id +++ b/template/xcode3/cocos2d-x_chipmunk_app/___PROJECTNAME___.xcodeproj/project.pbxproj.REMOVED.git-id @@ -1 +1 @@ -bf9495b1eb39b27435866491b2da9918233c5c90 \ No newline at end of file +aeb5b381069888074bcb7bd1b6e3e658e1262d7d \ No newline at end of file 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 19bd314dea..20c6fe7118 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 @@ -b7c09f3e759444e6da344ba829bac49f6742d22d \ No newline at end of file +9f36b35f636dbc0d59f5e319e14cadb04630172a \ No newline at end of file diff --git a/tests/tests/controller.cpp b/tests/tests/controller.cpp index 11c669c680..98f8933b77 100644 --- a/tests/tests/controller.cpp +++ b/tests/tests/controller.cpp @@ -109,8 +109,10 @@ static TestScene* CreateTestScene(int nIdx) pScene = new ZwoptexTestScene(); break; case TEST_CURL: pScene = new CurlTestScene(); break; +#if (CC_TARGET_PLATFORM != CC_PLATFORM_AIRPLAY) case TEST_USERDEFAULT: pScene = new UserDefaultTestScene(); break; +#endif default: break; }