mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 14:46:38 +09:00
Fix typo in identifier
This commit is contained in:
@ -237,7 +237,7 @@ namespace osu.Game.Overlays.Settings.Sections.Input
|
||||
{
|
||||
if (!aspectLock.Value)
|
||||
{
|
||||
float proposedAspectRatio = curentAspectRatio;
|
||||
float proposedAspectRatio = currentAspectRatio;
|
||||
|
||||
if (proposedAspectRatio >= aspectRatio.MinValue && proposedAspectRatio <= aspectRatio.MaxValue)
|
||||
{
|
||||
@ -278,8 +278,8 @@ namespace osu.Game.Overlays.Settings.Sections.Input
|
||||
aspectLock.Value = true;
|
||||
}
|
||||
|
||||
private void updateAspectRatio() => aspectRatio.Value = curentAspectRatio;
|
||||
private void updateAspectRatio() => aspectRatio.Value = currentAspectRatio;
|
||||
|
||||
private float curentAspectRatio => sizeX.Value / sizeY.Value;
|
||||
private float currentAspectRatio => sizeX.Value / sizeY.Value;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user