mirror of
https://github.com/holub/mame
synced 2025-04-28 11:11:48 +03:00
if a driver has no required roms then you have it.
This commit is contained in:
parent
8154fdc70d
commit
13d27fe17a
@ -144,8 +144,12 @@ m_searchpath = combinedpath;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// if there are no required roms then we have the set
|
||||||
|
if (required == 0)
|
||||||
|
return CORRECT;
|
||||||
|
|
||||||
// if we found nothing unique to this set & the set needs roms that aren't in the parent or the parent isn't found either, then we don't have the set at all
|
// if we found nothing unique to this set & the set needs roms that aren't in the parent or the parent isn't found either, then we don't have the set at all
|
||||||
if (found == sharedFound && required > 0 && (required != sharedRequired || sharedFound == 0))
|
if (found == sharedFound && (required != sharedRequired || sharedFound == 0))
|
||||||
m_record_list.reset();
|
m_record_list.reset();
|
||||||
|
|
||||||
// return a summary
|
// return a summary
|
||||||
|
Loading…
Reference in New Issue
Block a user