Fix clang build (error: must explicitly qualify name of member function when taking its address) (nw)

This commit is contained in:
AJR 2018-09-07 17:51:20 -04:00
parent 3120dba77d
commit 15ba57c518

View File

@ -171,7 +171,7 @@ void namcoc65_device::mcu_map(address_map &map)
void namcoc65_device::device_add_mconfig(machine_config &config)
{
HD63705(config, m_mcu, DERIVED_CLOCK(1, 1));
m_mcu->set_addrmap(AS_PROGRAM, &mcu_map);
m_mcu->set_addrmap(AS_PROGRAM, &namcoc65_device::mcu_map);
}
void namcoc65_device::device_resolve_objects()