From db5a1e241a23d80399634381f3a813339d47245d Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Wed, 15 Mar 2017 20:18:20 -0400 Subject: [PATCH] Don't crash on unimplemented sorts --- osu.Game/Screens/Select/CarouselContainer.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/osu.Game/Screens/Select/CarouselContainer.cs b/osu.Game/Screens/Select/CarouselContainer.cs index c0340acbd5..7de7779bd0 100644 --- a/osu.Game/Screens/Select/CarouselContainer.cs +++ b/osu.Game/Screens/Select/CarouselContainer.cs @@ -197,7 +197,8 @@ namespace osu.Game.Screens.Select }); break; default: - throw new NotImplementedException(); + Sort(SortMode.Artist); // Temporary + break; } scrollableContent.Clear(false);