Merge pull request #391 from micove/flush-color-reset

Don't buffer the changes to the console colors.
This commit is contained in:
Gregory Hainaut 2014-12-13 10:55:21 +01:00
commit c5efdb9df9
1 changed files with 1 additions and 0 deletions

View File

@ -168,6 +168,7 @@ static void __concall ConsoleStdout_DoSetColor( ConsoleColors color )
#ifdef __linux__
wxPrintf(L"\033[0m");
wxPrintf(GetLinuxConsoleColor(color));
fflush(stdout);
#endif
}