1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-16 02:57:26 +08:00

To satisfy CodeFactor

This commit is contained in:
Aurelian 2024-06-02 16:59:16 +02:00
parent d02c291168
commit 649cfb11fc

View File

@ -270,7 +270,7 @@ namespace osu.Game.Screens.Edit.Timing
{
double beat = (hitObject.StartTime - selectedGroup.Value!.Time) / timing.BeatLength;
hitObject.StartTime = beat * newBeatLength + selectedGroup.Value.Time;
hitObject.StartTime = (beat * newBeatLength) + selectedGroup.Value.Time;
}
}