Previous 199869 Revisions Next

r34422 Friday 16th January, 2015 at 20:16:48 UTC by Angelo Salese
Actually default Analog Y was changed in n64.c driver some time ago. Fixed Aleck 64 general inputs.
[src/mame/drivers]aleck64.c

trunk/src/mame/drivers/aleck64.c
r242933r242934
351351   PORT_BIT( 0xff, 0x80, IPT_AD_STICK_X ) PORT_SENSITIVITY(30) PORT_KEYDELTA(30) PORT_PLAYER(1)
352352
353353   PORT_START("P1_ANALOG_Y")
354   PORT_BIT( 0xff, 0x80, IPT_AD_STICK_Y ) PORT_MINMAX(0xff,0x00) PORT_SENSITIVITY(30) PORT_KEYDELTA(30) PORT_PLAYER(1)
354   PORT_BIT( 0xff, 0x80, IPT_AD_STICK_Y ) PORT_MINMAX(0x00,0xff) PORT_SENSITIVITY(30) PORT_KEYDELTA(30) PORT_PLAYER(1) PORT_REVERSE
355355
356356   PORT_START("P2")
357357   PORT_BIT( 0x8000, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_PLAYER(2)          // Button A
r242933r242934
374374   PORT_BIT( 0xff, 0x80, IPT_AD_STICK_X ) PORT_SENSITIVITY(30) PORT_KEYDELTA(30) PORT_PLAYER(2)
375375
376376   PORT_START("P2_ANALOG_Y")
377   PORT_BIT( 0xff, 0x80, IPT_AD_STICK_Y ) PORT_MINMAX(0xff,0x00) PORT_SENSITIVITY(30) PORT_KEYDELTA(30) PORT_PLAYER(2)
377   PORT_BIT( 0xff, 0x80, IPT_AD_STICK_Y ) PORT_MINMAX(0x00,0xff) PORT_SENSITIVITY(30) PORT_KEYDELTA(30) PORT_PLAYER(2) PORT_REVERSE
378378
379379   PORT_START("IN0")
380380   PORT_DIPNAME( 0x80000000, 0x80000000, "DIPSW1 #8" ) PORT_DIPLOCATION("SW1:8")
r242933r242934
457457   PORT_BIT( 0x0004, IP_ACTIVE_HIGH, IPT_UNUSED )
458458   PORT_BIT( 0x0002, IP_ACTIVE_HIGH, IPT_UNUSED )
459459   PORT_BIT( 0x0001, IP_ACTIVE_HIGH, IPT_BUTTON4 ) PORT_PLAYER(2)
460
461   PORT_MODIFY("P1_ANALOG_Y")
462   PORT_BIT( 0xff, 0x80, IPT_AD_STICK_Y ) PORT_SENSITIVITY(30) PORT_KEYDELTA(30) PORT_REVERSE PORT_PLAYER(1)
463
464   PORT_MODIFY("P2_ANALOG_Y")
465   PORT_BIT( 0xff, 0x80, IPT_AD_STICK_Y ) PORT_SENSITIVITY(30) PORT_KEYDELTA(30) PORT_REVERSE PORT_PLAYER(2)
466
467460INPUT_PORTS_END
468461
469462static INPUT_PORTS_START( mtetrisc )


Previous 199869 Revisions Next


© 1997-2024 The MAME Team