mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[DatFile] Allow for blank string names but not null names
This commit is contained in:
@@ -4018,7 +4018,7 @@ namespace SabreTools.Helper
|
||||
key = "";
|
||||
|
||||
// If there's no name in the rom, we log and skip it
|
||||
if (String.IsNullOrEmpty(item.Name))
|
||||
if (item.Name == null)
|
||||
{
|
||||
logger.Warning("Rom with no name found! Skipping...");
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user