fix ci error for PLATFORM_TARGET_MAC

This commit is contained in:
halx99 2020-02-07 16:51:57 +08:00
parent 9a5d6b4f5e
commit cae5a84c1b
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@
#elif CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID
#include <android/log.h>
#define AUDIO_LOG(fmt, ...) __android_log_print(ANDROID_LOG_DEBUG, "AudioEngine", fmt, ##__VA_ARGS__)
#elif CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_LINUX
#else // other platforms
#define AUDIO_LOG(fmt,...) printf(fmt "\n", ##__VA_ARGS__)
#endif