mirror of
https://github.com/holub/mame
synced 2025-10-06 09:00:04 +03:00
xml fix (nw)
This commit is contained in:
parent
d4cd5a6db9
commit
4d376af446
@ -1128,7 +1128,7 @@ void info_xml_creator::output_ports(const ioport_list &portlist)
|
|||||||
// cycle through ports
|
// cycle through ports
|
||||||
for (ioport_port *port = portlist.first(); port != nullptr; port = port->next())
|
for (ioport_port *port = portlist.first(); port != nullptr; port = port->next())
|
||||||
{
|
{
|
||||||
fprintf(m_output,"\t\t<port tag=\"%s\">\n",port->tag());
|
fprintf(m_output,"\t\t<port tag=\"%s\">\n", xml_normalize_string(port->tag()));
|
||||||
for (ioport_field *field = port->first_field(); field != nullptr; field = field->next())
|
for (ioport_field *field = port->first_field(); field != nullptr; field = field->next())
|
||||||
{
|
{
|
||||||
if(field->is_analog())
|
if(field->is_analog())
|
||||||
|
Loading…
Reference in New Issue
Block a user