1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-29 03:59:54 +08:00

Merge pull request #35474 from peppy/fix-wasapi-setting-text

Fix WASAPI settings notice text not displaying on startup
This commit is contained in:
Bartłomiej Dach
2025-10-28 08:23:03 +01:00
committed by GitHub
Unverified
@@ -50,11 +50,11 @@ namespace osu.Game.Overlays.Settings.Sections.Audio
wasapiExperimental.Current.ValueChanged += _ => onDeviceChanged(string.Empty);
}
updateItems();
audio.OnNewDevice += onDeviceChanged;
audio.OnLostDevice += onDeviceChanged;
dropdown.Current = audio.AudioDevice;
onDeviceChanged(string.Empty);
}
private void onDeviceChanged(string _)