diff options
author | 2022-06-25 15:09:53 -0700 | |
---|---|---|
committer | 2022-06-26 08:09:53 +1000 | |
commit | 993109a4b7f0c87d98c3de8f9bcd2d43bdd15d9c (patch) | |
tree | ae1b10a1a823ae7d3f6b0e580b0d3c004a901855 | |
parent | 11433779b8fc9fe4f099dc2b73515ce584ad7590 (diff) |
cps1.cpp: Added Final Fight test mode and Button 3 notes. (#9983) [David Silva]
-rw-r--r-- | src/mame/drivers/cps1.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/mame/drivers/cps1.cpp b/src/mame/drivers/cps1.cpp index ca5a275c622..57a20308712 100644 --- a/src/mame/drivers/cps1.cpp +++ b/src/mame/drivers/cps1.cpp @@ -1521,10 +1521,15 @@ static INPUT_PORTS_START( unsquad ) PORT_DIPSETTING( 0x00, DEF_STR( Test ) ) INPUT_PORTS_END -/* To enable other choices in the "test mode", you must press ("P1 Button 1" ('Ctrl') - or "P1 Button 2" ('Alt')) when "Service Mode" is ON */ +/* To access the hidden pattern test modes, turn the "Service Mode" dip to ON, and hold down "P1 Button 1" + ('Ctrl') or "P1 Button 2" ('Alt') during the bootup test. Button 1 will load the Scroll (Background) test, + and Button 2 will load an Obj (Sprite) viewer. */ + static INPUT_PORTS_START( ffight ) PORT_INCLUDE( cps1_3b ) + +/* The button below is not officially documented, pressing it will allow you to escape from grabs and choke + holds instantly. */ PORT_MODIFY("IN1") PORT_BIT( 0x0040, IP_ACTIVE_LOW, IPT_BUTTON3 ) PORT_PLAYER(1) PORT_NAME ("P1 Button 3 (Cheat)") |