mirror of
https://github.com/holub/mame
synced 2025-04-24 09:20:02 +03:00
Merge pull request #1200 from npwoods/fix_listxml
Fixes a copy-and-paste error that broke -listxml
This commit is contained in:
commit
38f86f2c05
@ -580,7 +580,7 @@ void info_xml_creator::output_rom(device_t &device)
|
||||
{
|
||||
// scan backwards through the ROM entries
|
||||
auto entries = rom_build_entries(m_drivlist.driver().rom);
|
||||
for (const rom_entry *brom = entries.data(); !ROMENTRY_ISEND(rom); rom++)
|
||||
for (const rom_entry *brom = entries.data(); !ROMENTRY_ISEND(brom); brom++)
|
||||
if (ROMENTRY_ISSYSTEM_BIOS(brom))
|
||||
{
|
||||
strcpy(bios_name, ROM_GETNAME(brom));
|
||||
|
Loading…
Reference in New Issue
Block a user