mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-23 08:07:54 -05:00
faster bf processing...
This commit is contained in:
parent
f94c3dec57
commit
427e4810ad
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