Update osu.Game/Beatmaps/Formats/LegacyBeatmapEncoder.cs

Co-authored-by: Salman Ahmed <email@iisalman.me>
This commit is contained in:
Craftplacer
2020-08-30 16:11:49 +02:00
committed by GitHub
parent 337037ab3b
commit 7e668fc31a

View File

@ -226,7 +226,8 @@ namespace osu.Game.Beatmaps.Formats
writer.Write(FormattableString.Invariant($"{(byte)(comboColour.R * byte.MaxValue)},"));
writer.Write(FormattableString.Invariant($"{(byte)(comboColour.G * byte.MaxValue)},"));
writer.Write(FormattableString.Invariant($"{(byte)(comboColour.B * byte.MaxValue)},"));
writer.WriteLine(FormattableString.Invariant($"{(byte)(comboColour.A * byte.MaxValue)}"));
writer.Write(FormattableString.Invariant($"{(byte)(comboColour.A * byte.MaxValue)}"));
writer.WriteLine();
}
}