[SabreTools, DatFile] Add runnable as a filterable field

This commit is contained in:
Matt Nadareski
2017-01-08 23:28:19 -08:00
parent d95551e9da
commit 36c4394988
5 changed files with 22 additions and 3 deletions

View File

@@ -1254,7 +1254,7 @@ namespace SabreTools.Helper.Dats
xtr.GetAttribute("isdevice") == "yes" ? MachineType.Device :
xtr.GetAttribute("ismechanical") == "yes" ? MachineType.Mechanical :
MachineType.None,
Runnable = xtr.GetAttribute("runnable") == "yes",
Runnable = xtr.GetAttribute("runnable") == "yes" || xtr.GetAttribute("runnable") == null,
};
if (subreader.GetAttribute("supported") != null)