Fix NaN handling

This commit is contained in:
Dean Herbert
2019-03-13 11:30:33 +09:00
parent 73d9aef5bd
commit 93b774104a
3 changed files with 23 additions and 9 deletions

View File

@ -348,7 +348,10 @@ namespace osu.Game.Beatmaps.Formats
CustomSampleBank = customSampleBank
});
}
catch (FormatException e)
catch (FormatException)
{
}
catch (OverflowException)
{
}
}