From 09020a440c3fe1afb481ff9e77defd6512743043 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Sat, 22 Mar 2025 16:08:22 -0400 Subject: [PATCH] increase channel name length to 21 characters; --- dvmconsole/MainWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dvmconsole/MainWindow.xaml.cs b/dvmconsole/MainWindow.xaml.cs index 9082450..7feb199 100644 --- a/dvmconsole/MainWindow.xaml.cs +++ b/dvmconsole/MainWindow.xaml.cs @@ -70,7 +70,7 @@ namespace dvmconsole public const int PCM_SAMPLES_LENGTH = 320; // MBE_SAMPLES_LENGTH * 2 public const int MAX_SYSTEM_NAME_LEN = 10; - public const int MAX_CHANNEL_NAME_LEN = 15; + public const int MAX_CHANNEL_NAME_LEN = 21; private const string INVALID_SYSTEM = "INVALID SYSTEM"; private const string INVALID_CODEPLUG_CHANNEL = "INVALID CODEPLUG CHANNEL";