Fix clear identifier typos

This commit is contained in:
Joseph Madamba
2021-12-09 21:04:31 -08:00
parent 55768d8c11
commit 98524d60a4
19 changed files with 45 additions and 45 deletions

View File

@ -53,7 +53,7 @@ namespace osu.Game.Screens.Menu
/// <summary>
/// How much should each bar go down each millisecond (based on a full bar).
/// </summary>
private const float decay_per_milisecond = 0.0024f;
private const float decay_per_millisecond = 0.0024f;
/// <summary>
/// Number of milliseconds between each amplitude update.
@ -136,7 +136,7 @@ namespace osu.Game.Screens.Menu
{
base.Update();
float decayFactor = (float)Time.Elapsed * decay_per_milisecond;
float decayFactor = (float)Time.Elapsed * decay_per_millisecond;
for (int i = 0; i < bars_per_visualiser; i++)
{