summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/pckeybrd.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/devices/machine/pckeybrd.cpp
parente311c17406f0b6a304e0df44d0f5ae2c317dcfd7 (diff)
Do not use FUNC in delegate where applicable (nw)
Diffstat (limited to 'src/devices/machine/pckeybrd.cpp')
-rw-r--r--src/devices/machine/pckeybrd.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/pckeybrd.cpp b/src/devices/machine/pckeybrd.cpp
index 5aa9e00541c..4b6e7713dcd 100644
--- a/src/devices/machine/pckeybrd.cpp
+++ b/src/devices/machine/pckeybrd.cpp
@@ -336,9 +336,9 @@ void pc_keyboard_device::device_start()
memset(m_make, 0, sizeof(m_make));
machine().ioport().natkeyboard().configure(
- ioport_queue_chars_delegate(FUNC(pc_keyboard_device::queue_chars), this),
- ioport_accept_char_delegate(FUNC(pc_keyboard_device::accept_char), this),
- ioport_charqueue_empty_delegate(FUNC(pc_keyboard_device::charqueue_empty), this));
+ ioport_queue_chars_delegate(&pc_keyboard_device::queue_chars, this),
+ ioport_accept_char_delegate(&pc_keyboard_device::accept_char, this),
+ ioport_charqueue_empty_delegate(&pc_keyboard_device::charqueue_empty, this));
m_out_keypress_func.resolve_safe();
m_keyboard_timer = timer_alloc();