summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/expro02.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-03-08 14:18:15 -0500
committer AJR <ajrhacker@users.noreply.github.com>2019-03-08 14:18:15 -0500
commit33949249a1cc7f48ab974aff5e312d2327b6041d (patch)
treef519aa4f82a96bbe877e6e44e8089ae73e16473c /src/mame/drivers/expro02.cpp
parentbd6808a02a91c7ef67b6bcaf8184c8be7fec446c (diff)
Fix clang error: must explicitly qualify name of member function when taking its address (nw)
Diffstat (limited to 'src/mame/drivers/expro02.cpp')
-rw-r--r--src/mame/drivers/expro02.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/expro02.cpp b/src/mame/drivers/expro02.cpp
index 1343ad0b984..654a4d8f355 100644
--- a/src/mame/drivers/expro02.cpp
+++ b/src/mame/drivers/expro02.cpp
@@ -981,7 +981,7 @@ void expro02_state::supmodel(machine_config &config)
{
comad_noview2(config);
- m_maincpu->set_addrmap(AS_PROGRAM, &supmodel_map);
+ m_maincpu->set_addrmap(AS_PROGRAM, &expro02_state::supmodel_map);
okim6295_device &oki(OKIM6295(config.replace(), "oki", 1584000, okim6295_device::PIN7_HIGH)); // clock frequency & pin 7 not verified
oki.set_addrmap(0, &expro02_state::oki_map);