Include <android/log.h> when debug output is enabled.

This commit is contained in:
David Reid
2022-12-20 15:52:41 +10:00
parent 02e6ca8f93
commit 9dfa5620a5
+3
View File
@@ -13203,6 +13203,9 @@ MA_API const char* ma_log_level_to_string(ma_uint32 logLevel)
} }
#if defined(MA_DEBUG_OUTPUT) #if defined(MA_DEBUG_OUTPUT)
#if defined(MA_ANDROID)
#include <android/log.h>
#endif
/* Customize this to use a specific tag in __android_log_print() for debug output messages. */ /* Customize this to use a specific tag in __android_log_print() for debug output messages. */
#ifndef MA_ANDROID_LOG_TAG #ifndef MA_ANDROID_LOG_TAG