mirror of
https://github.com/libretro/ppsspp.git
synced 2024-12-04 23:16:41 +00:00
Turn off color in iOS logs
This commit is contained in:
parent
d8197c88a1
commit
510228aab9
@ -54,15 +54,15 @@ ConsoleListener::ConsoleListener() : bHidden(true)
|
||||
#if defined(USING_WIN_UI)
|
||||
hConsole = NULL;
|
||||
bUseColor = true;
|
||||
|
||||
if (hTriggerEvent == NULL)
|
||||
{
|
||||
if (hTriggerEvent == NULL) {
|
||||
hTriggerEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
|
||||
InitializeCriticalSection(&criticalSection);
|
||||
logPending = new char[LOG_PENDING_MAX];
|
||||
}
|
||||
++refCount;
|
||||
#elif defined(_WIN32)
|
||||
#elif defined(ANDROID)
|
||||
bUseColor = false;
|
||||
#elif defined(IOS)
|
||||
bUseColor = false;
|
||||
#else
|
||||
bUseColor = isatty(fileno(stdout));
|
||||
|
Loading…
Reference in New Issue
Block a user