mirror of
https://github.com/osukey/osukey.git
synced 2025-06-08 21:07:59 +09: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)
|
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)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user