summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-03-02 10:22:54 -0500
committer AJR <ajrhacker@users.noreply.github.com>2017-03-02 10:22:54 -0500
commit998b41f701d381f7b1160fa2f935d97760b78118 (patch)
treef8a1da0d3c5b0002f5631805512f743b86202855
parenteb49d890aa9e3a644bc4622132dcb20be3c2caee (diff)
Fix silly editing error (nw)
-rw-r--r--src/frontend/mame/info.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/mame/info.cpp b/src/frontend/mame/info.cpp
index d4b21559b50..9a3a22ebf22 100644
--- a/src/frontend/mame/info.cpp
+++ b/src/frontend/mame/info.cpp
@@ -377,7 +377,7 @@ void info_xml_creator::output_one_device(device_t &device, const char *devtag)
for (ioport_field &field : port.second->fields())
if (field.type() >= IPT_START1 && field.type() < IPT_UI_FIRST)
{
- has_input = true; break;
+ has_input = true;
break;
}