mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
(MESS) bmjr : fixed enter key when pasting (reported by Anna Wu)
This commit is contained in:
parent
13ff216364
commit
162786d4d4
1 changed files with 2 additions and 2 deletions
|
@ -275,8 +275,8 @@ static INPUT_PORTS_START( bmjr )
|
|||
|
||||
PORT_START("KEYC")
|
||||
PORT_BIT(0x01,IP_ACTIVE_LOW,IPT_UNUSED)
|
||||
PORT_BIT(0x02,IP_ACTIVE_LOW,IPT_KEYBOARD) PORT_NAME("Enter") PORT_CODE(KEYCODE_ENTER)
|
||||
PORT_BIT(0x04,IP_ACTIVE_LOW,IPT_KEYBOARD) PORT_NAME("Backspace") PORT_CODE(KEYCODE_BACKSPACE)
|
||||
PORT_BIT(0x02,IP_ACTIVE_LOW,IPT_KEYBOARD) PORT_NAME("Enter") PORT_CODE(KEYCODE_ENTER) PORT_CHAR(13)
|
||||
PORT_BIT(0x04,IP_ACTIVE_LOW,IPT_KEYBOARD) PORT_NAME("Backspace") PORT_CODE(KEYCODE_BACKSPACE) PORT_CHAR(8)
|
||||
PORT_BIT(0x08,IP_ACTIVE_LOW,IPT_KEYBOARD) PORT_NAME("\xC2\xA5 / Left") PORT_CODE(KEYCODE_4_PAD)
|
||||
PORT_BIT(0xf0,IP_ACTIVE_LOW,IPT_UNUSED )
|
||||
|
||||
|
|
Loading…
Reference in a new issue