Add implicit braces for clarity

This commit is contained in:
Dean Herbert 2020-07-14 20:15:29 +09:00
parent 956980ee90
commit 2626ab41c3

View File

@ -40,7 +40,7 @@ namespace osu.Game.Screens.Play
private void onComboChange(ValueChangedEvent<int> combo)
{
if (combo.NewValue == 0 && (combo.OldValue > 20 || alwaysPlay.Value && firstTime))
if (combo.NewValue == 0 && (combo.OldValue > 20 || (alwaysPlay.Value && firstTime)))
{
comboBreakSample?.Play();
firstTime = false;