Fixed few GFX bugs in TeeWorlds, it still crashes
This commit is contained in:
@@ -30,6 +30,9 @@
|
||||
#if defined(CONF_PLATFORM_MACOSX)
|
||||
#include <Carbon/Carbon.h>
|
||||
#endif
|
||||
#ifdef ANDROID
|
||||
#include <android/log.h>
|
||||
#endif
|
||||
|
||||
#elif defined(CONF_FAMILY_WINDOWS)
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
@@ -107,6 +110,10 @@ static void logger_stdout(const char *line)
|
||||
{
|
||||
printf("%s\n", line);
|
||||
fflush(stdout);
|
||||
#ifdef ANDROID
|
||||
__android_log_print(ANDROID_LOG_INFO, "Teeworlds", "%s", line);
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
static void logger_debugger(const char *line)
|
||||
|
||||
Reference in New Issue
Block a user