(MESS) apple3: don't do color text in A2 emulation mode. [R. Belmont]

This commit is contained in:
R. Belmont 2014-08-26 00:32:52 +00:00
parent 27fb8c306c
commit 0c1723c294

View File

@ -154,7 +154,8 @@ void apple3_state::apple3_video_text40(bitmap_ind16 &bitmap)
offset = ram_size - 0x8000 + text_map[y] + x + (m_flags & VAR_VM2 ? 0x0400 : 0x0000);
ch = ram[offset];
if (m_flags & VAR_VM0)
// no color text in emulation mode
if ((m_flags & VAR_VM0) && (m_via_1_a & 0x40))
{
/* color text */
offset = ram_size - 0x8000 + text_map[y] + x + (m_flags & VAR_VM2 ? 0x0000 : 0x0400);