diff options
author | 2016-11-06 14:11:55 +0100 | |
---|---|---|
committer | 2016-11-06 14:11:55 +0100 | |
commit | 2027d59e7f36129e86b4e4cf2c32b18268c337b8 (patch) | |
tree | 97a01f3b9ff70dbfd860c57885880f8021600f6b /src/emu/inputdev.cpp | |
parent | e311c17406f0b6a304e0df44d0f5ae2c317dcfd7 (diff) |
Do not use FUNC in delegate where applicable (nw)
Diffstat (limited to 'src/emu/inputdev.cpp')
-rw-r--r-- | src/emu/inputdev.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/inputdev.cpp b/src/emu/inputdev.cpp index cf56387578f..ff58d63268b 100644 --- a/src/emu/inputdev.cpp +++ b/src/emu/inputdev.cpp @@ -585,7 +585,7 @@ input_class_keyboard::input_class_keyboard(input_manager &manager) : input_class(manager, DEVICE_CLASS_KEYBOARD, "keyboard", true, manager.machine().options().multi_keyboard()) { // request a per-frame callback for the keyboard class - machine().add_notifier(MACHINE_NOTIFY_FRAME, machine_notify_delegate(FUNC(input_class_keyboard::frame_callback), this)); + machine().add_notifier(MACHINE_NOTIFY_FRAME, machine_notify_delegate(&input_class_keyboard::frame_callback, this)); } |