summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/stvprot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/stvprot.cpp')
-rw-r--r--src/mame/machine/stvprot.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/stvprot.cpp b/src/mame/machine/stvprot.cpp
index eaf95385624..4344696389a 100644
--- a/src/mame/machine/stvprot.cpp
+++ b/src/mame/machine/stvprot.cpp
@@ -84,7 +84,7 @@ WRITE32_MEMBER ( stv_state::common_prot_w )
void stv_state::install_common_protection()
{
- m_maincpu->space(AS_PROGRAM).install_readwrite_handler(0x4fffff0, 0x4ffffff, read32_delegate(FUNC(stv_state::common_prot_r), this), write32_delegate(FUNC(stv_state::common_prot_w), this));
+ m_maincpu->space(AS_PROGRAM).install_readwrite_handler(0x4fffff0, 0x4ffffff, read32_delegate(*this, FUNC(stv_state::common_prot_r)), write32_delegate(*this, FUNC(stv_state::common_prot_w)));
}
void stv_state::stv_register_protection_savestates()