Fix incorrect cast

This commit is contained in:
Jamie Taylor
2022-08-24 22:31:28 +09:00
parent dc829334a1
commit da7f8270da

View File

@ -193,7 +193,7 @@ namespace osu.Game.Graphics.UserInterface
default:
channel = selectCharSample?.GetChannel();
pitch += (SelectedText.Length / (float)Text.Length) * 0.15f;
pitch += (SelectedText.Length / (double)Text.Length) * 0.15f;
break;
}