File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -1608,9 +1608,13 @@ static INPUT_PORTS_START( unsquad )
16081608 PORT_DIPSETTING( 0x00, DEF_STR( Test ) )
16091609INPUT_PORTS_END
16101610
1611- /* To access the hidden pattern test modes, turn the "Service Mode" dip to ON, and hold down "P1 Button 1"
1611+ /* Final Fight button 3 is not officially documented and does not exist on the control panel, probably a leftover.
1612+ Pressing it will allow you to escape from grabs and choke holds instantly.
1613+
1614+ To access the hidden pattern test modes, turn the "Service Mode" dip to ON, and hold down "P1 Button 1"
16121615 ('Ctrl') or "P1 Button 2" ('Alt') during the bootup test. Button 1 will load the Scroll (Background) test,
1613- and Button 2 will load an Obj (Sprite) viewer. */
1616+ and Button 2 will load an Obj (Sprite) viewer.
1617+ */
16141618static INPUT_PORTS_START( ffight )
16151619 PORT_INCLUDE( cps1_3b )
16161620
Original file line number Diff line number Diff line change @@ -566,7 +566,7 @@ void k052109_device::update_scroll()
566566 {
567567 u8 scrollctrl = m_scrollctrl >> (tmap * 3 ) & 7 ;
568568
569- static int rows_table[4 ] = { 1 , 1 , 32 , 256 };
569+ static const int rows_table[4 ] = { 1 , 1 , 32 , 256 };
570570 int rows = rows_table[scrollctrl & 3 ];
571571 int cols = BIT (scrollctrl, 2 ) ? 64 : 1 ;
572572
You can’t perform that action at this time.
0 commit comments