summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/apple2gs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/apple2gs.cpp')
-rw-r--r--src/mame/drivers/apple2gs.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/drivers/apple2gs.cpp b/src/mame/drivers/apple2gs.cpp
index 8eac15fc46a..16a910bab3c 100644
--- a/src/mame/drivers/apple2gs.cpp
+++ b/src/mame/drivers/apple2gs.cpp
@@ -2445,7 +2445,11 @@ u8 apple2gs_state::c000_r(offs_t offset)
{
ret |= 0x10;
}
- else if ((m_lastchar >= 0x32 && m_lastchar <= 0x3f) && (m_lastchar != 0x39))
+ else if (m_lastchar >= 0x32 && m_lastchar <= 0x37)
+ {
+ ret |= 0x10;
+ }
+ else if (m_lastchar >= 0x3c && m_lastchar <= 0x3f)
{
ret |= 0x10;
}