summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/info.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2012-02-23 14:51:32 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2012-02-23 14:51:32 +0000
commit266db132ccb3098d74e6313ea278ec962948abe8 (patch)
tree06d1a1fb8022a00c9249fbf940399a4ec5497730 /src/emu/info.c
parent4f311f5db77fe8acb516f5d9a5785aa80b4a859b (diff)
info.c - no need for description here since you can now check it in device according to shortname (nw)
Diffstat (limited to 'src/emu/info.c')
-rw-r--r--src/emu/info.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/emu/info.c b/src/emu/info.c
index 88e42e17a5f..13884e32dae 100644
--- a/src/emu/info.c
+++ b/src/emu/info.c
@@ -179,7 +179,6 @@ const char info_xml_creator::s_dtd_string[] =
"\t\t\t<!ATTLIST slot name CDATA #REQUIRED>\n"
"\t\t\t<!ELEMENT slotoption EMPTY>\n"
"\t\t\t\t<!ATTLIST slotoption name CDATA #REQUIRED>\n"
-"\t\t\t\t<!ATTLIST slotoption description CDATA #REQUIRED>\n"
"\t\t\t\t<!ATTLIST slotoption shortname CDATA #REQUIRED>\n"
"\t\t\t\t<!ATTLIST slotoption default (yes|no) \"no\">\n"
"\t\t<!ELEMENT softwarelist EMPTY>\n"
@@ -1288,7 +1287,6 @@ void info_xml_creator::output_slots(device_t &device, const char *root_tag)
fprintf(m_output, "\t\t\t<slotoption");
fprintf(m_output, " name=\"%s\"", xml_normalize_string(intf[i].name));
- fprintf(m_output, " description=\"%s\"", xml_normalize_string(dev->name()));
fprintf(m_output, " shortname=\"%s\"", xml_normalize_string(dev->shortname()));
if (slot->get_default_card(m_drivlist.config(), m_drivlist.options()))
{