diff options
| author | 2016-11-06 14:11:55 +0100 | |
|---|---|---|
| committer | 2016-11-06 14:11:55 +0100 | |
| commit | 2027d59e7f36129e86b4e4cf2c32b18268c337b8 (patch) | |
| tree | 97a01f3b9ff70dbfd860c57885880f8021600f6b /src/devices/machine/pckeybrd.cpp | |
| parent | e311c17406f0b6a304e0df44d0f5ae2c317dcfd7 (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.cpp | 6 |
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(); |
