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

Add required parameter for android build

This commit is contained in:
smoogipoo 2020-05-11 17:26:11 +09:00
parent 7f7d5e6617
commit ca6e6f7496

View File

@ -60,7 +60,7 @@ namespace osu.Game.Tests.Beatmaps.Formats
{
var stream = new MemoryStream();
using (var writer = new StreamWriter(stream, Encoding.UTF8, leaveOpen: true))
using (var writer = new StreamWriter(stream, Encoding.UTF8, 1024, true))
new LegacyBeatmapEncoder(beatmap).Encode(writer);
stream.Position = 0;