From fa0beabf41e598f478956ebeee19648496c9f709 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sat, 21 Apr 2012 16:07:01 +0000 Subject: [PATCH] fix for default attribute in slotoption of xml output (no whatsnew) --- src/emu/info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emu/info.c b/src/emu/info.c index cc39d76f85d..e29fb7108d4 100644 --- a/src/emu/info.c +++ b/src/emu/info.c @@ -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");