mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 00:53:56 +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)
|
if (!aspectLock.Value)
|
||||||
{
|
{
|
||||||
float proposedAspectRatio = curentAspectRatio;
|
float proposedAspectRatio = currentAspectRatio;
|
||||||
|
|
||||||
if (proposedAspectRatio >= aspectRatio.MinValue && proposedAspectRatio <= aspectRatio.MaxValue)
|
if (proposedAspectRatio >= aspectRatio.MinValue && proposedAspectRatio <= aspectRatio.MaxValue)
|
||||||
{
|
{
|
||||||
@ -278,8 +278,8 @@ namespace osu.Game.Overlays.Settings.Sections.Input
|
|||||||
aspectLock.Value = true;
|
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