Added support for MESS BIOS xml datlist (mess -listxml)

This commit is contained in:
2015-03-30 23:04:20 +01:00
parent b368f33351
commit efaba1f3d9
3 changed files with 417 additions and 0 deletions

View File

@@ -129,6 +129,10 @@ namespace ROMVault2.DatReaders
if (mame != null)
return DatXmlReader.ReadMameDat(ref tDat, doc);
XmlNode mess = doc.SelectSingleNode("mess");
if (mess != null)
return DatMessBIOSXmlReader.ReadMessDat(ref tDat, doc);
if (doc.DocumentElement != null)
{
XmlNode head = doc.DocumentElement.SelectSingleNode("header");