1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:17:23 +08:00

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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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();
}
}