Skip to content

Commit

Permalink
Less precision = more readable
Browse files Browse the repository at this point in the history
  • Loading branch information
superpowers04 committed Jan 11, 2025
1 parent d01731e commit dc2d447
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/se/SEProfiler.hx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion version.downloadMe
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit dc2d447

Please sign in to comment.