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/cpu/drcbex86.cpp | |
parent | e311c17406f0b6a304e0df44d0f5ae2c317dcfd7 (diff) |
Do not use FUNC in delegate where applicable (nw)
Diffstat (limited to 'src/devices/cpu/drcbex86.cpp')
-rw-r--r-- | src/devices/cpu/drcbex86.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/drcbex86.cpp b/src/devices/cpu/drcbex86.cpp index 7cc67502093..5f7bf220ef2 100644 --- a/src/devices/cpu/drcbex86.cpp +++ b/src/devices/cpu/drcbex86.cpp @@ -542,8 +542,8 @@ drcbe_x86::drcbe_x86(drcuml_state &drcuml, device_t &device, drc_cache &cache, u m_hashstacksave(nullptr), m_reslo(0), m_reshi(0), - m_fixup_label(FUNC(drcbe_x86::fixup_label), this), - m_fixup_exception(FUNC(drcbe_x86::fixup_exception), this) + m_fixup_label(&drcbe_x86::fixup_label, this), + m_fixup_exception(&drcbe_x86::fixup_exception, this) { // compute hi pointers for each register for (int regnum = 0; regnum < ARRAY_LENGTH(int_register_map); regnum++) |