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) private void handleTimingPoint(string line)
{
try
{ {
string[] split = line.Split(','); string[] split = line.Split(',');
@ -360,6 +362,10 @@ namespace osu.Game.Beatmaps.Formats
}); });
} }
} }
catch (FormatException e)
{
}
}
private void handleHitObject(string line) private void handleHitObject(string line)
{ {