1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-28 00:20:28 +08:00

Use default overlap of 1

Matches closer to stable spec.
This commit is contained in:
Dean Herbert
2026-02-18 02:21:56 +09:00
Unverified
parent cc9a5ede29
commit 86ab507e2e
+1 -1
View File
@@ -168,7 +168,7 @@ namespace osu.Game.Skinning
switch (font)
{
case LegacyFont.ScoreEntry:
return 0;
return 1;
case LegacyFont.Score:
return source.GetConfig<LegacySetting, float>(LegacySetting.ScoreOverlap)?.Value ?? 0f;