1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 15:03:13 +08:00

Fix formatting

This commit is contained in:
PercyDan54 2021-04-28 20:55:20 +08:00
parent 4fe1497f63
commit e716162ac2
No known key found for this signature in database
GPG Key ID: 6AEA7C525131BAF3

View File

@ -8,7 +8,6 @@ using System.Text;
using osu.Framework.Extensions;
using osu.Game.Beatmaps;
using osu.Game.IO.Legacy;
using osu.Game.Replays.Legacy;
using osu.Game.Rulesets.Replays.Types;
using SharpCompress.Compressors.LZMA;
@ -91,13 +90,14 @@ namespace osu.Game.Scoring.Legacy
if (score.Replay != null)
{
int lastTimeRounded = 0;
int lastTime = 0;
foreach (var f in score.Replay.Frames.OfType<IConvertibleReplayFrame>().Select(f => f.ToLegacy(beatmap)))
{
// Rounding because stable could only parse integral values
int timeRounded = (int)Math.Round(f.Time);
replayData.Append(FormattableString.Invariant($"{timeRounded - lastTimeRounded}|{f.MouseX ?? 0}|{f.MouseY ?? 0}|{(int)f.ButtonState},"));
lastTimeRounded = timeRounded;
int time = (int)Math.Round(f.Time);
replayData.Append(FormattableString.Invariant($"{time - lastTime}|{f.MouseX ?? 0}|{f.MouseY ?? 0}|{(int)f.ButtonState},"));
lastTime = time;
}
}