1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 06:03:08 +08:00

Fix switch stetement order 2

This commit is contained in:
Ivan Pavluk 2018-12-05 16:28:36 +07:00
parent 6c38db04ee
commit 6d7e71c003
2 changed files with 4 additions and 4 deletions

View File

@ -13,10 +13,10 @@ namespace osu.Game.Rulesets.Taiko.Judgements
{
switch (result)
{
default:
return 0;
case HitResult.Great:
return 200;
default:
return 0;
}
}

View File

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