fix for default attribute in slotoption of xml output (no whatsnew)

This commit is contained in:
Miodrag Milanovic 2012-04-21 16:07:01 +00:00
parent 4897746866
commit fa0beabf41

View File

@ -1279,7 +1279,7 @@ void info_xml_creator::output_slots(device_t &device, const char *root_tag)
fprintf(m_output, " devname=\"%s\"", xml_normalize_string(dev->shortname()));
if (slot->get_default_card(m_drivlist.config(), m_drivlist.options()))
{
if (slot->get_default_card(m_drivlist.config(), m_drivlist.options()) == intf[i].name)
if (strcmp(slot->get_default_card(m_drivlist.config(), m_drivlist.options()),intf[i].name)==0)
fprintf(m_output, " default=\"yes\"");
}
fprintf(m_output, "/>\n");