From dc2d447e2118a63d187ad02efc3b1bda08dbd7f2 Mon Sep 17 00:00:00 2001 From: Super <38338700+superpowers04@users.noreply.github.com> Date: Sat, 11 Jan 2025 02:56:56 -0500 Subject: [PATCH] Less precision = more readable --- source/se/SEProfiler.hx | 2 +- version.downloadMe | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/se/SEProfiler.hx b/source/se/SEProfiler.hx index ee955c1..1e0c0af 100644 --- a/source/se/SEProfiler.hx +++ b/source/se/SEProfiler.hx @@ -88,7 +88,7 @@ class SEProfiler{ } @:keep inline function stamp(){ ticksSinceUpdate=0; - _end = Math.floor((Sys.time()-_start) * 100000)*0.00001; + _end = Math.floor((Sys.time()-_start) * 1000)*0.001; if(_end > max) max=_end; if(_end > peak) peak = _end; // average = Math.floor(FlxMath.lerp(average,_end,0.5)*10000)*0.0001; diff --git a/version.downloadMe b/version.downloadMe index 04ab518..d6ab64b 100644 --- a/version.downloadMe +++ b/version.downloadMe @@ -1,4 +1,4 @@ -25.01.11.0248; +25.01.11.0256; * Better Psych character support(Still kinda experimental but should be more stable) * Fix some small errors * Fix characters not loading due to using ID instead of folderName