- --
Viewing Issue Advanced Details
ID | Category [?] | Severity [?] | Reproducibility | Date Submitted | Last Update |
---|---|---|---|---|---|
00603 | DIP/Input | Trivial | Have not tried | Jan 31, 2008, 14:06 | Feb 14, 2008, 15:07 |
Tester | -Misc Reporters- | View Status | Public | Platform | |
Assigned To | Resolution | Fixed | OS | ||
Status [?] | Resolved | Driver | |||
Version | 0.114u2 | Fixed in Version | 0.114u4 | Build | |
Fixed in Git Commit | Github Pull Request # | ||||
Summary | 00603: rampage: Player 3 is a 4-way joystick, while players 1-2 are 8-ways. | ||||
Description | Player 3 is a 4-way joystick, while players 1-2 are 8-ways. | ||||
Steps To Reproduce | |||||
Additional Information | Posted by uRebelScum | ||||
Github Commit | |||||
Flags | |||||
Regression Version | |||||
Affected Sets / Systems | rampage | ||||
Attached Files
|
fix.diff (3,373 bytes) Feb 14, 2008, 15:07 [Show Content] [Hide Content]diff -Nru official/src/mame/drivers/ddenlovr.c smallinputs/src/mame/drivers/ddenlovr.c --- official/src/mame/drivers/ddenlovr.c 2007-04-12 12:43:49.000000000 -0700 +++ smallinputs/src/mame/drivers/ddenlovr.c 2007-04-17 15:28:36.000000000 -0700 @@ -4820,7 +4820,7 @@ PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_UNKNOWN ) // J PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_MAHJONG_N ) PORT_PLAYER(2) // N PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_UNKNOWN ) // Reach - PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_MAHJONG_BET ) // BET + PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_MAHJONG_BET ) PORT_PLAYER(2) // BET PORT_START PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_MAHJONG_C ) PORT_PLAYER(2) // C diff -Nru official/src/mame/drivers/galaxian.c smallinputs/src/mame/drivers/galaxian.c --- official/src/mame/drivers/galaxian.c 2007-03-29 20:44:46.000000000 -0700 +++ smallinputs/src/mame/drivers/galaxian.c 2007-04-17 15:32:13.000000000 -0700 @@ -3549,7 +3549,7 @@ INPUT_PORTS_START( ckongg ) PORT_START_TAG("IN0") PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_COIN1 ) - PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP ) PORT_8WAY PORT_COCKTAIL + PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP ) PORT_4WAY PORT_COCKTAIL PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT ) PORT_4WAY PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT ) PORT_4WAY PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_JOYSTICK_UP ) PORT_4WAY @@ -3560,10 +3560,10 @@ PORT_START_TAG("IN1") PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_START1 ) PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_START2 ) - PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT ) PORT_8WAY PORT_COCKTAIL - PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT ) PORT_8WAY PORT_COCKTAIL + PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT ) PORT_4WAY PORT_COCKTAIL + PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_JOYSTICK_RIGHT ) PORT_4WAY PORT_COCKTAIL PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_COCKTAIL - PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_JOYSTICK_DOWN ) PORT_8WAY PORT_COCKTAIL + PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_JOYSTICK_DOWN ) PORT_4WAY PORT_COCKTAIL PORT_DIPNAME( 0xc0, 0x00, DEF_STR( Coinage ) ) PORT_DIPSETTING( 0x40, DEF_STR( 2C_1C ) ) PORT_DIPSETTING( 0x00, DEF_STR( 1C_1C ) ) diff -Nru official/src/mame/drivers/mcr3.c smallinputs/src/mame/drivers/mcr3.c --- official/src/mame/drivers/mcr3.c 2007-03-01 01:24:14.000000000 -0800 +++ smallinputs/src/mame/drivers/mcr3.c 2007-04-17 15:29:41.000000000 -0700 @@ -718,10 +718,10 @@ PORT_DIPSETTING( 0x00, DEF_STR( On ) ) PORT_START_TAG("MONO.IP4") /* J4 1-7,9 */ - PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_JOYSTICK_UP ) PORT_4WAY PORT_PLAYER(3) - PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_4WAY PORT_PLAYER(3) - PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_JOYSTICK_DOWN ) PORT_4WAY PORT_PLAYER(3) - PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_4WAY PORT_PLAYER(3) + PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_JOYSTICK_UP ) PORT_8WAY PORT_PLAYER(3) + PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_8WAY PORT_PLAYER(3) + PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_JOYSTICK_DOWN ) PORT_8WAY PORT_PLAYER(3) + PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_8WAY PORT_PLAYER(3) PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(3) PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_PLAYER(3) PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_UNUSED ) | ||||
Relationships
There are no relationship linked to this issue. |
Notes
0
There are no notes attached to this issue. |