From 693a362e357fa21fa30ad2ba5a6dded4e2157661 Mon Sep 17 00:00:00 2001 From: Ed Gonzalez Date: Thu, 3 Sep 2015 13:28:24 -0500 Subject: [PATCH] Don't replace spaces with underscores to save APPDATA - This uses the existing FlexRadio Systems folder --- pc/CODEC2 GUI/CODEC2 GUI/DstarInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pc/CODEC2 GUI/CODEC2 GUI/DstarInfo.cs b/pc/CODEC2 GUI/CODEC2 GUI/DstarInfo.cs index 8b18fd7..1d4d7a7 100644 --- a/pc/CODEC2 GUI/CODEC2 GUI/DstarInfo.cs +++ b/pc/CODEC2 GUI/CODEC2 GUI/DstarInfo.cs @@ -509,7 +509,7 @@ namespace CODEC2_GUI AssemblyInfo ai = new AssemblyInfo(Assembly.GetAssembly(typeof(MainForm))); - string mybasepath = System.IO.Path.Combine(basepath, ai.Company.Replace(' ', '_'), ai.ProductTitle.Replace(' ', '_')); + string mybasepath = System.IO.Path.Combine(basepath, ai.Company, ai.ProductTitle); if (!System.IO.Directory.Exists(mybasepath)) System.IO.Directory.CreateDirectory(mybasepath);