mirror of
https://github.com/holub/mame
synced 2025-07-03 17:08:39 +03:00
Correct bit for POK_KEY_BREAK which now allows colon/semi-colon [:;] key to work properly [Tom Clayton]
This commit is contained in:
parent
feadb561a7
commit
eb0b5a552e
@ -168,7 +168,7 @@ POKEY_KEYBOARD_HANDLER(atari_a800_keyboard)
|
|||||||
{
|
{
|
||||||
case pokey_device::POK_KEY_BREAK:
|
case pokey_device::POK_KEY_BREAK:
|
||||||
/* special case ... */
|
/* special case ... */
|
||||||
ret |= ((device->machine().root_device().ioport(tag[0])->read_safe(0) & 0x04) ? 0x02 : 0x00);
|
ret |= ((device->machine().root_device().ioport(tag[0])->read_safe(0) & 0x08) ? 0x02 : 0x00);
|
||||||
break;
|
break;
|
||||||
case pokey_device::POK_KEY_CTRL:
|
case pokey_device::POK_KEY_CTRL:
|
||||||
/* CTRL */
|
/* CTRL */
|
||||||
|
Loading…
Reference in New Issue
Block a user