mirror of
https://github.com/holub/mame
synced 2025-05-29 17:13:05 +03:00
2009/5/16 Mike Green <mikedx@gmail.com>:
> Here is a small patch for the touchmaster driver > > This removes the pulse input on the touchscreen for the touchmaster > drivers, making centipede returns (tm4k), breakout3k (tm3k), > wordsearch (tm8k) and possibly other games playable do to the need for > "dragging" the screen. An example of this is the word search game > where it is necessary to drag from the start letter to the end to > highlight the selection, which is not possible with a pulse input. > > Best regards > > Mike
This commit is contained in:
parent
446c154bb1
commit
64b527f6ec
@ -175,7 +175,7 @@ void microtouch_rx(int count, UINT8* data)
|
||||
|
||||
INPUT_PORTS_START(microtouch)
|
||||
PORT_START("TOUCH")
|
||||
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_IMPULSE(10) PORT_NAME( "Touch screen" )
|
||||
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_NAME( "Touch screen" )
|
||||
PORT_START("TOUCH_X")
|
||||
PORT_BIT( 0x3fff, 0x2000, IPT_LIGHTGUN_X ) PORT_CROSSHAIR(X, 1.0, 0.0, 0) PORT_SENSITIVITY(45) PORT_KEYDELTA(15)
|
||||
PORT_START("TOUCH_Y")
|
||||
|
Loading…
Reference in New Issue
Block a user