From e59cc55a10772005412dd873a5d6cbca1a77c641 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Sun, 13 Sep 2015 13:27:21 -0700 Subject: [PATCH] Fixed Android build. --- include/bx/debug.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/bx/debug.h b/include/bx/debug.h index 455069a..3e7afb2 100644 --- a/include/bx/debug.h +++ b/include/bx/debug.h @@ -51,9 +51,9 @@ namespace bx inline void debugOutput(const char* _out) { #if BX_PLATFORM_ANDROID -# ifndef BX_ANDROID_LOG_TAGS -# define BX_ANDROID_LOG_TAGS "" -# endif // BX_ANDROID_LOG_TAGS +# ifndef BX_ANDROID_LOG_TAG +# define BX_ANDROID_LOG_TAG "" +# endif // BX_ANDROID_LOG_TAG __android_log_write(ANDROID_LOG_DEBUG, BX_ANDROID_LOG_TAG, _out); #elif BX_PLATFORM_WINDOWS || BX_PLATFORM_WINRT || BX_PLATFORM_XBOX360 OutputDebugStringA(_out);