mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 09:32:55 +08:00
Fix missing wireframe behind "x" sign on combo counter display
This commit is contained in:
parent
4110adc4c0
commit
77bf6e3244
@ -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++;
|
||||
|
Loading…
Reference in New Issue
Block a user