mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 13:22: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()
|
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;
|
long c = DisplayedCount;
|
||||||
while ((c /= 10) > 0)
|
while ((c /= 10) > 0)
|
||||||
digitsRequired++;
|
digitsRequired++;
|
||||||
|
Loading…
Reference in New Issue
Block a user