summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/fd1094.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/fd1094.cpp
parente311c17406f0b6a304e0df44d0f5ae2c317dcfd7 (diff)
Do not use FUNC in delegate where applicable (nw)
Diffstat (limited to 'src/mame/machine/fd1094.cpp')
-rw-r--r--src/mame/machine/fd1094.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/fd1094.cpp b/src/mame/machine/fd1094.cpp
index 93cfe1d9a99..bdf0a430e5b 100644
--- a/src/mame/machine/fd1094.cpp
+++ b/src/mame/machine/fd1094.cpp
@@ -581,7 +581,7 @@ fd1094_device::fd1094_device(const machine_config &mconfig, const char *tag, dev
if ((opcode & 0xff80) == 0x4e80 || (opcode & 0xf0f8) == 0x50c8 || (opcode & 0xf000) == 0x6000)
m_masked_opcodes_lookup[1][opcode >> 4] |= 1 << ((opcode >> 1) & 7);
- m_state_change = state_change_delegate(FUNC(fd1094_device::default_state_change), this);
+ m_state_change = state_change_delegate(&fd1094_device::default_state_change, this);
}