From 930ed4215012ce7eac59f439060755f065c5d094 Mon Sep 17 00:00:00 2001 From: Aada Date: Tue, 3 Mar 2026 09:03:49 +0200 Subject: [PATCH] Change max projection resolution to 2048 - as this maxes the vertex count nicely --- src/Main.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }