From e32118eccb8beed5faac3ff288125ba3d0d1ec2d Mon Sep 17 00:00:00 2001 From: AJR Date: Tue, 12 Feb 2019 12:32:32 -0500 Subject: Fix clang error: reference to non-static member function must be called (nw) --- src/mame/drivers/mephistp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/drivers/mephistp.cpp b/src/mame/drivers/mephistp.cpp index 7538c317b09..85bd1e9fdce 100644 --- a/src/mame/drivers/mephistp.cpp +++ b/src/mame/drivers/mephistp.cpp @@ -164,7 +164,7 @@ void mephisto_pinball_state::mephisto(machine_config &config) { /* basic machine hardware */ I8088(config, m_maincpu, XTAL(18'000'000)/3); - m_maincpu->set_addrmap(AS_PROGRAM, mephisto_pinball_state::mephisto_map); + m_maincpu->set_addrmap(AS_PROGRAM, &mephisto_pinball_state::mephisto_map); //m_maincpu->set_irq_acknowledge_callback("muart", FUNC(i8256_device::inta_cb)); NVRAM(config, "nvram", nvram_device::DEFAULT_ALL_0); -- cgit v1.2.3