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:
parent
d24d81d8a9
commit
fd9480cfb6
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user