From 94f305a9b085107f726afc9c87193afd427d741e Mon Sep 17 00:00:00 2001 From: ksherlock Date: Wed, 21 Apr 2021 09:22:05 -0400 Subject: [PATCH] kp = should be 0x106 (#7973) --- src/mame/drivers/apple2gs.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/drivers/apple2gs.cpp b/src/mame/drivers/apple2gs.cpp index 46bf3640bad..43c1846c8d5 100644 --- a/src/mame/drivers/apple2gs.cpp +++ b/src/mame/drivers/apple2gs.cpp @@ -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; }