[SimpleSort] Fix equivalence

This commit is contained in:
Matt Nadareski
2016-08-29 20:45:20 -07:00
parent 2e204d9473
commit b77cdff0cc
3 changed files with 4 additions and 5 deletions

View File

@@ -772,7 +772,7 @@ namespace SabreTools
}
else
{
string archiveFileName = Path.Combine(_outdir, found.Machine + ".zip");
string archiveFileName = Path.Combine(_outdir, found.Machine.Name + ".zip");
FileTools.CopyFileBetweenManagedArchives(input, archiveFileName, rom.Name, found.Name, _logger);
}
}