1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-16 21:33:44 +08:00

Increase coordinate parsing limits

This commit is contained in:
smoogipoo
2020-06-24 18:53:52 +09:00
Unverified
parent f381cf3ae8
commit 6bc507d49e
+1 -1
View File
@@ -11,7 +11,7 @@ namespace osu.Game.Beatmaps.Formats
/// </summary>
public static class Parsing
{
public const int MAX_COORDINATE_VALUE = 65536;
public const int MAX_COORDINATE_VALUE = 131072;
public const double MAX_PARSE_VALUE = int.MaxValue;