1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-31 19:50:41 +08:00

Remove minor version for now

This commit is contained in:
Dean Herbert
2020-03-05 13:46:25 +09:00
Unverified
parent 7229131d36
commit 1e6710020e
@@ -142,7 +142,6 @@ namespace osu.Game.Configuration
if (!int.TryParse(pieces[0], out int year)) return;
if (!int.TryParse(pieces[1], out int monthDay)) return;
if (!int.TryParse(pieces[2], out int minor)) return;
int combined = (year * 10000) + monthDay;