Naxesss / MapsetVerifier

A modding tool for osu!
93 stars 8 forks source link

Value was either too large or too small for a UInt64 #34

Closed Limeony closed 6 months ago

Limeony commented 1 year ago

image happens only with one map this error was not present before

Morilli commented 6 months ago

This happen when the BeatmapID is set to a negative value, like -1. However this should still be fixed as it appears osu treats beatmapid and beatmapsetid as int internally, so parsing as ulong seems incorrect.

Limeony commented 6 months ago

This happen when the BeatmapID is set to a negative value, like -1. However this should still be fixed as it appears osu treats beatmapid and beatmapsetid as int internally, so parsing as ulong seems incorrect.

Better late than never, thanks.