[DatFile] Add replacement for Machine description sub

This commit is contained in:
Matt Nadareski
2018-03-01 11:33:21 -08:00
parent 45730ac7a5
commit 4007fb88d0

View File

@@ -2463,7 +2463,7 @@ namespace SabreTools.Library.DatFiles
// If the key mapping doesn't exist, add it // If the key mapping doesn't exist, add it
if (!mapping.ContainsKey(item.MachineName)) if (!mapping.ContainsKey(item.MachineName))
{ {
mapping.TryAdd(item.MachineName, item.MachineDescription.Replace('/', '_').Replace("\"", "''")); mapping.TryAdd(item.MachineName, item.MachineDescription.Replace('/', '_').Replace("\"", "''").Replace(":", " - "));
} }
} }
}); });