summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author 987123879113 <63495610+987123879113@users.noreply.github.com>2020-12-29 22:21:14 +0900
committer GitHub <noreply@github.com>2020-12-30 00:21:14 +1100
commitcc6c22d263533890b605dc895293421ae5ce4ae7 (patch)
tree23200c23efc0ee4d4a552f74cc05bd2c30a8d5b8
parent3982f48af0ff0f538c57987557768dbe870355ed (diff)
firebeat.cpp: Fixed input range for wheels in Keyboardmania games. (#7607)
-rw-r--r--src/mame/drivers/firebeat.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/firebeat.cpp b/src/mame/drivers/firebeat.cpp
index 8eae995e066..f84f985c4cb 100644
--- a/src/mame/drivers/firebeat.cpp
+++ b/src/mame/drivers/firebeat.cpp
@@ -949,10 +949,10 @@ static INPUT_PORTS_START(kbm)
PORT_BIT( 0xff, IP_ACTIVE_LOW, IPT_UNKNOWN ) /* Dip switches */
PORT_START("WHEEL_P1") // Keyboard modulation wheel (P1)
- PORT_BIT( 0xff, 0x80, IPT_PADDLE ) PORT_MINMAX(0xff, 0x00) PORT_SENSITIVITY(30) PORT_KEYDELTA(10)
+ PORT_BIT( 0xff, 0x80, IPT_PADDLE ) PORT_MINMAX(0x00, 0xff) PORT_SENSITIVITY(30) PORT_KEYDELTA(10)
PORT_START("WHEEL_P2") // Keyboard modulation wheel (P2)
- PORT_BIT( 0xff, 0x80, IPT_PADDLE_V ) PORT_MINMAX(0xff, 0x00) PORT_SENSITIVITY(30) PORT_KEYDELTA(10)
+ PORT_BIT( 0xff, 0x80, IPT_PADDLE_V ) PORT_MINMAX(0x00, 0xff) PORT_SENSITIVITY(30) PORT_KEYDELTA(10)
/*
PORT_START("KEYBOARD_P1")