diff options
-rw-r--r-- | src/mame/drivers/nemesis.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/nemesis.cpp b/src/mame/drivers/nemesis.cpp index eef93d8d906..0a5767ca8e7 100644 --- a/src/mame/drivers/nemesis.cpp +++ b/src/mame/drivers/nemesis.cpp @@ -314,7 +314,7 @@ READ16_MEMBER(nemesis_state::konamigt_input_word_r) */ int data = ioport("IN3")->read(); - int data2 = ioport("PADDLE")->read(); + int data2 = ioport("WHEEL")->read(); int ret=0x0000; @@ -933,8 +933,8 @@ static INPUT_PORTS_START( konamigt ) PORT_SERVICE_DIPLOC( 0x04, IP_ACTIVE_LOW, "SW3:3" ) PORT_BIT( 0xfa, IP_ACTIVE_LOW, IPT_UNUSED ) - PORT_START("PADDLE") - PORT_BIT( 0x7f, 0x40, IPT_PADDLE ) PORT_SENSITIVITY(25) PORT_KEYDELTA(10) + PORT_START("WHEEL") /* Wheel (360deg) */ + PORT_BIT( 0xff, 0x00, IPT_DIAL ) PORT_SENSITIVITY(25) PORT_KEYDELTA(5) INPUT_PORTS_END @@ -985,8 +985,8 @@ static INPUT_PORTS_START( rf2 ) PORT_SERVICE_DIPLOC( 0x04, IP_ACTIVE_LOW, "SW3:3" ) PORT_BIT( 0xfa, IP_ACTIVE_LOW, IPT_UNUSED ) - PORT_START("PADDLE") - PORT_BIT( 0x7f, 0x40, IPT_PADDLE ) PORT_SENSITIVITY(25) PORT_KEYDELTA(10) + PORT_START("WHEEL") /* Wheel (360deg) */ + PORT_BIT( 0xff, 0x00, IPT_DIAL ) PORT_SENSITIVITY(25) PORT_KEYDELTA(5) INPUT_PORTS_END |