1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-30 09:30:17 +08:00

Fix switch stetement order 2

This commit is contained in:
Ivan Pavluk
2018-12-05 16:28:36 +07:00
Unverified
parent 6c38db04ee
commit 6d7e71c003
2 changed files with 4 additions and 4 deletions
@@ -13,10 +13,10 @@ namespace osu.Game.Rulesets.Taiko.Judgements
{
switch (result)
{
default:
return 0;
case HitResult.Great:
return 200;
default:
return 0;
}
}
@@ -37,14 +37,14 @@ namespace osu.Game.Rulesets.Taiko.Judgements
{
switch (result)
{
default:
return 0;
case HitResult.Miss:
return -1.0;
case HitResult.Good:
return 1.1;
case HitResult.Great:
return 3.0;
default:
return 0;
}
}