summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/output.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/output.cpp')
-rw-r--r--src/emu/output.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/output.cpp b/src/emu/output.cpp
index af30ac9a0b6..60489cae11e 100644
--- a/src/emu/output.cpp
+++ b/src/emu/output.cpp
@@ -28,8 +28,8 @@ output_manager::output_manager(running_machine &machine)
m_uniqueid(12345)
{
/* add pause callback */
- machine.add_notifier(MACHINE_NOTIFY_PAUSE, machine_notify_delegate(FUNC(output_manager::pause), this));
- machine.add_notifier(MACHINE_NOTIFY_RESUME, machine_notify_delegate(FUNC(output_manager::resume), this));
+ machine.add_notifier(MACHINE_NOTIFY_PAUSE, machine_notify_delegate(&output_manager::pause, this));
+ machine.add_notifier(MACHINE_NOTIFY_RESUME, machine_notify_delegate(&output_manager::resume, this));
}
/*-------------------------------------------------