mirror of
https://github.com/holub/mame
synced 2025-04-24 01:11:11 +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:
|
||||
/* 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;
|
||||
case pokey_device::POK_KEY_CTRL:
|
||||
/* CTRL */
|
||||
|
Loading…
Reference in New Issue
Block a user