Fix missed identifier typos

This commit is contained in:
Joseph Madamba
2022-01-12 15:46:20 -08:00
parent b245ffefc1
commit 5185f6010e
2 changed files with 8 additions and 3 deletions

View File

@ -533,9 +533,9 @@ namespace osu.Game.Rulesets.Objects.Drawables
protected double CalculateSamplePlaybackBalance(double position)
{
float balanceAdjustAmount = positionalHitsoundsLevel.Value * 2;
double returnedvalue = balanceAdjustAmount * (position - 0.5f);
double returnedValue = balanceAdjustAmount * (position - 0.5f);
return returnedvalue;
return returnedValue;
}
/// <summary>