summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Osso <mesgnet@yahoo.it>2014-12-24 07:51:22 +0100
committer Osso <mesgnet@yahoo.it>2014-12-24 07:51:22 +0100
commiteb8e025b26ca7e218228fa1eaa3eb6f81f6ebdf9 (patch)
tree9fed94b4e8737df879af57ef41f1f1037e9dfe40
parent2dee3188be47d36b15c0dfa360cae95e27c6fc28 (diff)
dinohunt: fixed player 3 inputs (MT05804) [darq]
-rw-r--r--src/mame/drivers/cps1.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mame/drivers/cps1.c b/src/mame/drivers/cps1.c
index b7dba20172e..79d40be1d96 100644
--- a/src/mame/drivers/cps1.c
+++ b/src/mame/drivers/cps1.c
@@ -11523,6 +11523,7 @@ DRIVER_INIT_MEMBER(cps_state,dinohunt)
// is this shared with the new sound hw?
UINT8* ram = (UINT8*)m_maincpu->space(AS_PROGRAM).install_ram(0xf18000, 0xf19fff);
memset(ram,0xff,0x2000);
+ m_maincpu->space(AS_PROGRAM).install_read_handler(0xfc0000, 0xfc0001, read16_delegate(FUNC(cps_state::cps1_in2_r), this));
DRIVER_INIT_CALL(cps1);
}