__android_log_print(ANDROID_LOG_DEBUG, "cocos2d-x debug info", buf);


에 대한 오류는


아래와 같이 수정

 __android_log_print(ANDROID_LOG_DEBUG, "cocos2d-x debug info", "%s", buf);

+ Recent posts