fix for empty controlled statement with MSVC 2012 (nw)

This commit is contained in:
smf- 2013-10-13 12:23:55 +00:00
parent 02634b62f0
commit c5b08d8ddf

View File

@ -183,7 +183,9 @@ public:
if (cnt != dev->m_inputs.count() && !dev->variable_input_count())
fatalerror("netlist: input count mismatch for %s - expected %d found %d\n", devname, dev->m_inputs.count(), cnt);
if (dev->variable_input_count())
{
VERBOSE_OUT(("variable inputs %s: %d\n", dev->name(), cnt));
}
check_char(')');
}