mirror of
https://github.com/holub/mame
synced 2025-04-23 17:00:53 +03:00
Fix for -romident misattributing device ROMs to alphabetically first driver using them
This commit is contained in:
parent
85a8b6047e
commit
79c5a04954
@ -235,7 +235,9 @@ int media_identifier::find_by_hash(const util::hash_collection &hashes, int leng
|
||||
// output information about the match
|
||||
if (found)
|
||||
osd_printf_info(" ");
|
||||
osd_printf_info("= %s%-20s %-10s %s\n", baddump ? "(BAD) " : "", ROM_GETNAME(rom), m_drivlist.driver().name, m_drivlist.driver().description);
|
||||
osd_printf_info("= %s%-20s %-10s %s%s\n", baddump ? "(BAD) " : "",
|
||||
ROM_GETNAME(rom), device.shortname(), device.name(),
|
||||
device.owner() != nullptr ? " (device)" : "");
|
||||
found++;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user