mirror of
https://github.com/osukey/osukey.git
synced 2025-06-09 13:28:03 +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)
|
||||
{
|
||||
try
|
||||
{
|
||||
string[] split = line.Split(',');
|
||||
|
||||
@ -360,6 +362,10 @@ namespace osu.Game.Beatmaps.Formats
|
||||
});
|
||||
}
|
||||
}
|
||||
catch (FormatException e)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
private void handleHitObject(string line)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user