diff options
author | 2022-01-11 03:45:02 -0900 | |
---|---|---|
committer | 2022-01-11 07:45:02 -0500 | |
commit | a3410e0b3150aa452562a94bb0ba4644d6ee697c (patch) | |
tree | 169be562f54101d791fa6f44f10fc59bc9842763 | |
parent | b467bbc93fa62bc151d505352186412a51e5e484 (diff) |
dkong.cpp: Correctly indentify Donkey Kong 3 service mode button. (#9134)
-rw-r--r-- | src/mame/drivers/dkong.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/dkong.cpp b/src/mame/drivers/dkong.cpp index 23c535787e7..3514493adcd 100644 --- a/src/mame/drivers/dkong.cpp +++ b/src/mame/drivers/dkong.cpp @@ -1119,7 +1119,7 @@ static INPUT_PORTS_START( dkong3 ) PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_START1 ) PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_START2 ) - PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_COIN3 ) + PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_SERVICE ) PORT_START("IN1") /* IN1 */ PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT ) PORT_4WAY PORT_COCKTAIL |