summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/thepit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/thepit.c')
-rw-r--r--src/mame/drivers/thepit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/thepit.c b/src/mame/drivers/thepit.c
index ee0d6dc0faa..50c520dc5f7 100644
--- a/src/mame/drivers/thepit.c
+++ b/src/mame/drivers/thepit.c
@@ -1091,7 +1091,7 @@ READ8_MEMBER(thepit_state::rtriv_question_r)
DRIVER_INIT_MEMBER(thepit_state,rtriv)
{
// Set-up the weirdest questions read ever done
- machine().device("maincpu")->memory().space(AS_PROGRAM)->install_read_handler(0x4000, 0x4fff, read8_delegate(FUNC(thepit_state::rtriv_question_r),this));
+ machine().device("maincpu")->memory().space(AS_PROGRAM).install_read_handler(0x4000, 0x4fff, read8_delegate(FUNC(thepit_state::rtriv_question_r),this));
}