diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/localconsts.h | 3 | ||||
-rw-r--r-- | src/logger.cpp | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/localconsts.h b/src/localconsts.h index 628584a45..9367cb015 100644 --- a/src/localconsts.h +++ b/src/localconsts.h @@ -178,6 +178,9 @@ // Android logging // #define ANDROID_LOG 1 +// nacl logging +// #define NACL_LOG 1 + // profiler // #define USE_PROFILER 1 diff --git a/src/logger.cpp b/src/logger.cpp index 433713760..c1beca132 100644 --- a/src/logger.cpp +++ b/src/logger.cpp @@ -45,6 +45,9 @@ #define SPECIALLOG(x) __android_log_print(ANDROID_LOG_INFO, "manaplus", x); #define DSPECIALLOG(x) __android_log_print(ANDROID_LOG_VERBOSE, \ "manaplus", x); +#elif defined __native_client__ && defined(NACL_LOG) +#define SPECIALLOG(x) std::cerr << x; +#define DSPECIALLOG(x) std::cerr << x; #else #define SPECIALLOG(x) #define DSPECIALLOG(x) |