1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:07:25 +08:00

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;
});
}