From 993109a4b7f0c87d98c3de8f9bcd2d43bdd15d9c Mon Sep 17 00:00:00 2001 From: David 'Foxhack' Silva <71686027+FoxhackDN@users.noreply.github.com> Date: Sat, 25 Jun 2022 15:09:53 -0700 Subject: [PATCH] cps1.cpp: Added Final Fight test mode and Button 3 notes. (#9983) [David Silva] --- src/mame/drivers/cps1.cpp | 9 +++++++-- 1 file 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)")