Merge pull request #13 from claunia/master

Added support for MESS BIOS xml datlist (mess -listxml)
This commit is contained in:
gjefferyes
2015-09-16 17:37:12 -05:00
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");