1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 01:02:55 +08:00

remove extra parentheses

This commit is contained in:
Liam DeVoe 2020-03-20 16:44:38 -04:00
parent 6a63ba1bb8
commit 55568ee6a5
2 changed files with 2 additions and 2 deletions

View File

@ -31,6 +31,6 @@ namespace osu.Game.Rulesets.Mods
Precision = 0.01,
};
public override string SettingDescription => SpeedChange.IsDefault ? "" : $" ({SpeedChange.Value}x)";
public override string SettingDescription => SpeedChange.IsDefault ? "" : $"{SpeedChange.Value}x";
}
}

View File

@ -31,6 +31,6 @@ namespace osu.Game.Rulesets.Mods
Precision = 0.01,
};
public override string SettingDescription => SpeedChange.IsDefault ? "" : $" ({SpeedChange.Value}x)";
public override string SettingDescription => SpeedChange.IsDefault ? "" : $"{SpeedChange.Value}x";
}
}