Merge pull request #2285 from DarraghCoy/ccuserdefault_android_fix

Fix CCUserDefault.cpp compiling on Android.
This commit is contained in:
James Chen 2013-03-31 22:45:18 -07:00
commit 42aafa7519
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ THE SOFTWARE.
#include "platform/CCFileUtils.h"
#include "../tinyxml2/tinyxml2.h"
#if (CC_TARGET_PLATFORM != CC_PLATFORM_IOS && CC_PLATFORM != CC_PLATFORM_ANDROID)
#if (CC_TARGET_PLATFORM != CC_PLATFORM_IOS && CC_TARGET_PLATFORM != CC_PLATFORM_ANDROID)
// root name of xml
#define USERDEFAULT_ROOT_NAME "userDefaultRoot"