And then everything became one

This commit is contained in:
Dean Herbert
2017-09-18 22:32:49 +09:00
parent 4a0370a68a
commit 6d3d485565
109 changed files with 6518 additions and 1058 deletions

View File

@ -59,14 +59,13 @@ namespace osu.Game.Overlays.Settings.Sections.Audio
Children = new Drawable[]
{
dropdown = new SettingsDropdown<string>
{
Bindable = audio.AudioDevice
},
dropdown = new SettingsDropdown<string>()
};
updateItems();
dropdown.Bindable = audio.AudioDevice;
audio.OnNewDevice += onDeviceChanged;
audio.OnLostDevice += onDeviceChanged;
}