Fixed a bug I introduced ;)

This commit is contained in:
jme9
2025-03-18 20:45:31 -07:00
parent d50de67f82
commit 0e60bb4207
3 changed files with 12 additions and 20 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ namespace LunaLightXMG
public float Zoom
{
get => zoom;
set => zoom = (int)Math.Floor(MathHelper.Clamp(value, 1f, 3f));
set => zoom = (int)Math.Floor(MathHelper.Clamp(value, 1f, 2f));
}
public float Rotation
{