1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 15:27:26 +08:00

Move default return out of switch/case

This commit is contained in:
Jack Boswell (boswelja) 2020-06-04 20:57:24 +12:00
parent 1cf4e7f654
commit bd3e40a8cf

View File

@ -73,10 +73,9 @@ namespace osu.Game.Screens.Select
updateText();
Click();
return true;
default:
return false;
}
return false;
}
public override void OnReleased(GlobalAction action)