Rename variable for clarity

This commit is contained in:
Dean Herbert
2021-02-11 14:18:40 +09:00
parent 72562070bc
commit 896f318b56

View File

@ -109,11 +109,11 @@ namespace osu.Game.Overlays.Notifications
private void clearAll()
{
bool playSound = true;
bool first = true;
notifications.Children.ForEach(c =>
{
c.Close(playSound);
playSound = false;
c.Close(first);
first = false;
});
}