1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 11:42:56 +08:00

Fix missing wireframe behind "x" sign on combo counter display

This commit is contained in:
Bartłomiej Dach 2024-01-09 13:59:27 +01:00
parent 4110adc4c0
commit 77bf6e3244
No known key found for this signature in database

View File

@ -74,7 +74,8 @@ namespace osu.Game.Screens.Play.HUD
private int getDigitsRequiredForDisplayCount()
{
int digitsRequired = 1;
// one for the single presumed starting digit, one for the "x" at the end.
int digitsRequired = 2;
long c = DisplayedCount;
while ((c /= 10) > 0)
digitsRequired++;