kp = should be 0x106 (#7973)

This commit is contained in:
ksherlock 2021-04-21 09:22:05 -04:00 committed by GitHub
parent 7f64e4fd7e
commit 94f305a9b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -836,7 +836,7 @@ WRITE_LINE_MEMBER(apple2gs_state::ay3600_data_ready_w)
trans |= (special & 0x01) ? 0x0000 : 0x0200; // caps lock is bit 9 (active low)
// hack in keypad equals because we can't find it in the IIe keymap (Sather doesn't show it in the matrix, but it's clearly on real platinum IIes)
if (m_lastchar == 0x146)
if (m_lastchar == 0x106)
{
m_transchar = '=';
}
@ -2457,7 +2457,7 @@ u8 apple2gs_state::c000_r(offs_t offset)
{
ret |= 0x10;
}
else if ((m_lastchar >= 0x109 && m_lastchar <= 0x10a) || (m_lastchar == 0x146))
else if ((m_lastchar >= 0x109 && m_lastchar <= 0x10a) || (m_lastchar == 0x106))
{
ret |= 0x10;
}