summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/tecmosys.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-11-06 14:11:55 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-11-06 14:11:55 +0100
commit2027d59e7f36129e86b4e4cf2c32b18268c337b8 (patch)
tree97a01f3b9ff70dbfd860c57885880f8021600f6b /src/mame/machine/tecmosys.cpp
parente311c17406f0b6a304e0df44d0f5ae2c317dcfd7 (diff)
Do not use FUNC in delegate where applicable (nw)
Diffstat (limited to 'src/mame/machine/tecmosys.cpp')
-rw-r--r--src/mame/machine/tecmosys.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/tecmosys.cpp b/src/mame/machine/tecmosys.cpp
index 2b0553546b6..e119070d7d6 100644
--- a/src/mame/machine/tecmosys.cpp
+++ b/src/mame/machine/tecmosys.cpp
@@ -121,7 +121,7 @@ void tecmosys_state::prot_init(int which)
case 2: m_device_data = &tkdensha_data; break;
}
- machine().add_notifier(MACHINE_NOTIFY_RESET, machine_notify_delegate(FUNC(tecmosys_state::prot_reset),this));
+ machine().add_notifier(MACHINE_NOTIFY_RESET, machine_notify_delegate(&tecmosys_state::prot_reset,this));
}
READ16_MEMBER(tecmosys_state::prot_status_r)