Skip to content

Commit

Permalink
quick accuracy fix hopefully
Browse files Browse the repository at this point in the history
idk why i didnt think of doing this
  • Loading branch information
charlesisfeline committed Nov 28, 2024
1 parent 5f873a8 commit e5bc8de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/funkin/play/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -2437,7 +2437,7 @@ class PlayState extends MusicBeatSubState
var accuracy:String = "?";
if (totalPlayed != 0)
{
var percent:Float = Math.floor(ratingPercent * 100 * 2);
var percent:Float = Math.floor(ratingPercent * 100 * 2) - 100;
accuracy = percent + '%';
}

Expand Down

0 comments on commit e5bc8de

Please sign in to comment.