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

Handle timingpoint FormatException

This commit is contained in:
smoogipoo 2018-04-02 20:08:40 +09:00
parent d24d81d8a9
commit fd9480cfb6

View File

@ -276,6 +276,8 @@ namespace osu.Game.Beatmaps.Formats
}
private void handleTimingPoint(string line)
{
try
{
string[] split = line.Split(',');
@ -360,6 +362,10 @@ namespace osu.Game.Beatmaps.Formats
});
}
}
catch (FormatException e)
{
}
}
private void handleHitObject(string line)
{