1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 09:32:55 +08:00

formatting fix

Co-Authored-By: pavlukivan <pavlukivan@outlook.com>
This commit is contained in:
Dan Balasescu 2018-12-09 23:38:29 +07:00 committed by GitHub
parent 784a114eae
commit 77a544e475
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -96,7 +96,7 @@ namespace osu.Game.Rulesets.Objects
for (var result = HitResult.Perfect; result >= HitResult.Miss; --result)
{
if(IsHitResultAllowed(result) && timeOffset <= HalfWindowFor(result))
if (IsHitResultAllowed(result) && timeOffset <= HalfWindowFor(result))
return result;
}