diff --git a/src/Main.cs b/src/Main.cs index 114961a..180bb1d 100644 --- a/src/Main.cs +++ b/src/Main.cs @@ -196,6 +196,6 @@ public partial class Main : Control { change = new string(change.Where(c => char.IsDigit(c)).ToArray()); _resolution = Int32.Parse(change); - _resolution = Math.Clamp(_resolution, 64, 8192); + _resolution = Math.Clamp(_resolution, 64, 2048); } }