Skip to content

Commit

Permalink
fix(#85): multi-hint (#277)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjfhsjfh authored Jun 8, 2024
1 parent 3fdef00 commit 740c203
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prpr/src/core/note.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ impl Note {
if config.invisible_time.is_finite() && self.time - config.invisible_time < res.time {
return;
}
let scale = (if self.multiple_hint {
let scale = (if res.config.double_hint && self.multiple_hint {
res.res_pack.note_style_mh.click.width() / res.res_pack.note_style.click.width()
} else {
1.0
Expand Down

0 comments on commit 740c203

Please sign in to comment.