mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-23 08:07:54 -05:00
Merge pull request #376 from FunkinCrew/ninjamuffin99-patch-1
faster bf processing...
This commit is contained in:
commit
677f4b1b4f
1 changed files with 6 additions and 1 deletions
|
@ -52,7 +52,12 @@ class AnsiTrace
|
|||
public static function traceBF()
|
||||
{
|
||||
#if sys
|
||||
if (colorSupported) Sys.println(ansiBF.join("\n"));
|
||||
if (colorSupported)
|
||||
{
|
||||
for (line in ansiBF)
|
||||
Sys.stdout().writeString(line + "\n");
|
||||
Sys.stdout().flush();
|
||||
}
|
||||
#end
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue