mirror of
https://github.com/ppy/osu
synced 2025-04-01 14:38:37 +00:00
remove extra parentheses
This commit is contained in:
parent
6a63ba1bb8
commit
55568ee6a5
@ -31,6 +31,6 @@ namespace osu.Game.Rulesets.Mods
|
|||||||
Precision = 0.01,
|
Precision = 0.01,
|
||||||
};
|
};
|
||||||
|
|
||||||
public override string SettingDescription => SpeedChange.IsDefault ? "" : $" ({SpeedChange.Value}x)";
|
public override string SettingDescription => SpeedChange.IsDefault ? "" : $"{SpeedChange.Value}x";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -31,6 +31,6 @@ namespace osu.Game.Rulesets.Mods
|
|||||||
Precision = 0.01,
|
Precision = 0.01,
|
||||||
};
|
};
|
||||||
|
|
||||||
public override string SettingDescription => SpeedChange.IsDefault ? "" : $" ({SpeedChange.Value}x)";
|
public override string SettingDescription => SpeedChange.IsDefault ? "" : $"{SpeedChange.Value}x";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user