[Filter] Fix Blanks being filtered out

This commit is contained in:
Matt Nadareski
2018-02-09 18:21:01 -08:00
parent 9898caf80f
commit ccbae68ec1

View File

@@ -710,7 +710,7 @@ namespace SabreTools.Library.DatFiles
}
// Filter on rom type
if (_romTypes.Count == 0 && _notRomTypes.Count == 0 && item.Type != ItemType.Rom && item.Type != ItemType.Disk)
if (_romTypes.Count == 0 && _notRomTypes.Count == 0 && item.Type != ItemType.Rom && item.Type != ItemType.Disk && item.Type != ItemType.Blank)
{
return false;
}