mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
Added the parent software to the searchpath when verifying software list entries. (nw)
This commit is contained in:
parent
4c72cf891c
commit
242445cfe2
@ -218,6 +218,10 @@ media_auditor::summary media_auditor::audit_software(const char *list_name, soft
|
||||
m_validation = validation;
|
||||
|
||||
astring combinedpath(swinfo->shortname, ";", list_name, PATH_SEPARATOR, swinfo->shortname);
|
||||
if ( swinfo->parentname )
|
||||
{
|
||||
combinedpath.cat(";").cat(swinfo->parentname).cat(";").cat(list_name).cat(PATH_SEPARATOR).cat(swinfo->parentname);
|
||||
}
|
||||
m_searchpath = combinedpath;
|
||||
|
||||
int found = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user