From: ptitSeb Date: Tue, 22 Oct 2013 16:15:22 +0000 (+0200) Subject: GLES2N64: Logging on the Pandora works now X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=mupen64plus-pandora.git;a=commitdiff_plain;h=a4bc0a6fa3a0389e2940b780fabc8a595a6b4a9c GLES2N64: Logging on the Pandora works now --- diff --git a/source/gles2n64/src/Common.h b/source/gles2n64/src/Common.h index ac508cd..89c9dd1 100755 --- a/source/gles2n64/src/Common.h +++ b/source/gles2n64/src/Common.h @@ -21,12 +21,13 @@ #if LOG_LEVEL>0 -#include - #define LOG(A, ...) \ if (A <= LOG_LEVEL) \ { \ - __android_log_print(ANDROID_LOG_DEBUG, "gles2n64", __VA_ARGS__); \ + if (A == LOG_WARNING) printf("(WW) "); \ + if (A == LOG_ERROR) printf("(EE) "); \ + printf(__VA_ARGS__); \ + fflush(stdout); \ } #else