From 51f23e06ab86c5987111205686602d4e2c36012b Mon Sep 17 00:00:00 2001 From: burninrubber0 Date: Wed, 12 Jul 2023 23:39:12 -0400 Subject: [PATCH] Limit zone count to 512 for real this time --- PVSFormat/AddZone.Designer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVSFormat/AddZone.Designer.cs b/PVSFormat/AddZone.Designer.cs index a0a9a45..fce6e30 100644 --- a/PVSFormat/AddZone.Designer.cs +++ b/PVSFormat/AddZone.Designer.cs @@ -58,7 +58,7 @@ private void InitializeComponent() // zoneIdNumericUpDown // zoneIdNumericUpDown.Location = new System.Drawing.Point(42, 32); - zoneIdNumericUpDown.Maximum = new decimal(new int[] { 512, 0, 0, 0 }); + zoneIdNumericUpDown.Maximum = new decimal(new int[] { 511, 0, 0, 0 }); zoneIdNumericUpDown.Name = "zoneIdNumericUpDown"; zoneIdNumericUpDown.Size = new System.Drawing.Size(100, 23); zoneIdNumericUpDown.TabIndex = 2;