Skip to content

Commit

Permalink
k
Browse files Browse the repository at this point in the history
  • Loading branch information
Snirozu committed Nov 20, 2024
1 parent b2f2af6 commit a138dbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/online/network/Leaderboard.hx
Original file line number Diff line number Diff line change
Expand Up @@ -96,5 +96,5 @@ typedef TopScore = {
var goods:Float;
var bads:Float;
var shits:Float;
var playbackRate:Null<Float>;
var playbackRate:Float;
}
2 changes: 1 addition & 1 deletion source/states/FreeplayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,7 @@ class FreeplayState extends MusicBeatState
ratingFC = 'SDCB';

var fpRating = '';
if (top[i].playbackRate != null) {
if (top[i].playbackRate != 0) {
if (top[i].playbackRate > 1)
fpRating = "+";
else if (top[i].playbackRate < 1)
Expand Down

0 comments on commit a138dbc

Please sign in to comment.