1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 13:22:55 +08:00

Don't crash on unimplemented sorts

This commit is contained in:
Drew DeVault 2017-03-15 20:18:20 -04:00
parent 3aecbf5739
commit db5a1e241a

View File

@ -197,7 +197,8 @@ namespace osu.Game.Screens.Select
}); });
break; break;
default: default:
throw new NotImplementedException(); Sort(SortMode.Artist); // Temporary
break;
} }
scrollableContent.Clear(false); scrollableContent.Clear(false);