Remvoe ctor argument and fallback to storage-based TeamList if no custom list has been provided.

This commit is contained in:
Dean Herbert
2017-03-03 20:21:11 +09:00
parent ca73b77a9a
commit 4a109fcc55
5 changed files with 100 additions and 122 deletions

View File

@ -105,7 +105,7 @@ namespace osu.Game.Screens.Menu
{
if (!args.Repeat && state.Keyboard.ControlPressed && state.Keyboard.ShiftPressed && args.Key == Key.D)
{
Push(new Drawings(new FileTeamList(Game.Host.Storage)));
Push(new Drawings());
return true;
}