diff options
| author | 2025-07-08 14:52:15 +0200 | |
|---|---|---|
| committer | 2025-07-08 14:52:15 +0200 | |
| commit | 71ddebceb778368a536e9ac229851e50287fc032 (patch) | |
| tree | da633127443bc9535a5e102893c4c995186dd644 | |
| parent | d7603c61a278e8719e735cca0d656c9811cca576 (diff) | |
ffight: comment out n/a button3
| -rw-r--r-- | src/mame/capcom/cps1.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mame/capcom/cps1.cpp b/src/mame/capcom/cps1.cpp index b40982bc2c2..83118467dc3 100644 --- a/src/mame/capcom/cps1.cpp +++ b/src/mame/capcom/cps1.cpp @@ -1611,16 +1611,17 @@ INPUT_PORTS_END /* 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 ) + PORT_INCLUDE( cps1_2b ) -/* The button below is not officially documented, pressing it will allow you to escape from grabs and choke - holds instantly. */ +#if 0 +/* The button below is not officially documented and does not exist on the control panel, probably a leftover. + 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)") PORT_BIT( 0x4000, IP_ACTIVE_LOW, IPT_BUTTON3 ) PORT_PLAYER(2) PORT_NAME ("P2 Button 3 (Cheat)") +#endif PORT_START("DSWA") CPS1_COINAGE_1( "SW(A)" ) |
