mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 00:23:59 +09:00
Typo fix, removed unnecessary braces
This commit is contained in:
@ -78,7 +78,7 @@ namespace osu.Game.Graphics.UserInterface.Volume
|
||||
return true;
|
||||
case GlobalAction.ToggleMute:
|
||||
Show();
|
||||
volumeMeterMaster.ToogleMute();
|
||||
volumeMeterMaster.ToggleMute();
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -96,17 +96,13 @@ namespace osu.Game.Graphics.UserInterface.Volume
|
||||
public void Mute()
|
||||
{
|
||||
if (!IsMuted)
|
||||
{
|
||||
volumeMeterMaster.ToogleMute();
|
||||
}
|
||||
volumeMeterMaster.ToggleMute();
|
||||
}
|
||||
|
||||
public void Unmute()
|
||||
{
|
||||
if (IsMuted)
|
||||
{
|
||||
volumeMeterMaster.ToogleMute();
|
||||
}
|
||||
volumeMeterMaster.ToggleMute();
|
||||
}
|
||||
|
||||
[BackgroundDependencyLoader]
|
||||
|
Reference in New Issue
Block a user