Added logic to process a forward slash in 16-bit data being converted for PROMS

This commit is contained in:
John Jenko 2013-10-30 18:18:33 +00:00
parent fadac13f82
commit 60e2116d0d

View File

@ -58,6 +58,8 @@ namespace Config
sValue = sValue.Trim(' ');
sName = sName.Replace(' ', '_');
sName = sName.Replace("\\", "_slash_");
sName = sName.Replace("/", "_fslash_");
if (xParent.Name == "color")
{
string[] parts = sValue.Split(",".ToCharArray());