summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author MASH <mameinfo@ewetel.net>2020-03-12 03:14:55 +0100
committer GitHub <noreply@github.com>2020-03-12 03:14:55 +0100
commit4e895fee600a6a3dfa36328e170c08332ebbde9c (patch)
treea29e171b848183f8585aa642c02be51e191b0a91
parent2ed31c7650c0bace6fe104e10c3cbb666831a854 (diff)
Added wheel control to Konami GT and Konami RF2
Added steering wheel to Konami GT and Konami RF2 [mmarino4] See MAMETesters bug # 05331
-rw-r--r--src/mame/drivers/nemesis.cpp10
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