Skip to content

Commit

Permalink
gotta lock in
Browse files Browse the repository at this point in the history
  • Loading branch information
jeenyuhs committed May 28, 2024
1 parent 1fce78b commit 8f9a882
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rina-pp"
version = "0.9.24"
version = "0.9.25"
edition = "2021"
authors = ["MaxOhn <[email protected]>", "Simon G."]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/osu/performance/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ impl OsuPerformanceInner {
if self.attrs.max_combo == 0 {
1.0
} else if self.mods.rx() && self.state.max_combo > 16 {
((f64::from(self.state.max_combo) / f64::from(self.attrs.max_combo)).log10() * 0.56 + 1.0)
(f64::from(self.state.max_combo) / f64::from(self.attrs.max_combo)).log10() * 0.56 + 1.0
} else {
(f64::from(self.state.max_combo).powf(0.8) / f64::from(self.attrs.max_combo).powf(0.8))
.min(1.0)
Expand Down

0 comments on commit 8f9a882

Please sign in to comment.