diff --git a/SabreTools.Library/DatFiles/DatFile.cs b/SabreTools.Library/DatFiles/DatFile.cs index 90019559..bde42f5b 100644 --- a/SabreTools.Library/DatFiles/DatFile.cs +++ b/SabreTools.Library/DatFiles/DatFile.cs @@ -3279,6 +3279,11 @@ namespace SabreTools.Library.DatFiles /// The key for the item public string ParseAddHelper(DatItem item, bool clean, bool remUnicode) { + if (item.Name == "3DMaze/WINDOWS/TEMP/") + { + Console.WriteLine(); + } + string key = ""; // If there's no name in the rom, we log and skip it @@ -3288,13 +3293,6 @@ namespace SabreTools.Library.DatFiles return key; } - // If the name ends with a directory separator, we log and skip it (DOSCenter only?) - if (item.Name.EndsWith("/") || item.Name.EndsWith("\\")) - { - Globals.Logger.Warning("{0}: Rom ending with directory separator found: '{1}'. Skipping...", FileName, item.Name); - return key; - } - // If we're in cleaning mode, sanitize the game name item.MachineName = (clean ? Utilities.CleanGameName(item.MachineName) : item.MachineName);