mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-23 08:07:54 -05:00
Merge branch 'rewrite/master' into result-screen-pitch
This commit is contained in:
commit
bf6ec0421c
2 changed files with 8 additions and 1 deletions
|
@ -17,7 +17,9 @@ class TrackerUtil
|
|||
*/
|
||||
public static function initTrackers():Void
|
||||
{
|
||||
#if FLX_DEBUG
|
||||
Tracker.addProfile(new TrackerProfile(Highscore, ["tallies"]));
|
||||
FlxG.console.registerClass(Highscore);
|
||||
#end
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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