Remove unnecessary float literal

This commit is contained in:
Ivan Pavluk 2018-12-06 19:15:41 +07:00
parent cb2444e01c
commit aa79758db5

View File

@ -34,7 +34,7 @@ namespace osu.Game.Rulesets.Catch.Judgements
default:
return 0;
case HitResult.Perfect:
return 10.2f;
return 10.2;
}
}