From 998b41f701d381f7b1160fa2f935d97760b78118 Mon Sep 17 00:00:00 2001 From: AJR Date: Thu, 2 Mar 2017 10:22:54 -0500 Subject: [PATCH] Fix silly editing error (nw) --- src/frontend/mame/info.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }