[DatFIle] Put check back in

This commit is contained in:
Matt Nadareski
2016-09-20 23:42:49 -07:00
parent 340580708a
commit ca0e93e1ec

View File

@@ -2258,6 +2258,13 @@ namespace SabreTools.Helper
List<DatItem> roms = dict[key]; List<DatItem> roms = dict[key];
// If we somehow have a null list, just skip it
if (roms == null)
{
logger.Warning("Blank list found for key: " + key);
continue;
}
// If we're merging the roms, do so // If we're merging the roms, do so
if (mergeroms) if (mergeroms)
{ {