apple2: fixed inverse text drawing. [R. Belmont]

This commit is contained in:
arbee 2016-04-18 00:00:36 -04:00
parent 266efbe350
commit 16c5dcfa4a

View File

@ -827,6 +827,12 @@ void a2_video_device::plot_text_character_orig(bitmap_ind16 &bitmap, int xpos, i
bg = i; bg = i;
} }
} }
else if (code < 0x40) // inverse: flip FG and BG
{
i = fg;
fg = bg;
bg = i;
}
/* look up the character data */ /* look up the character data */
chardata = &textgfx_data[(code * 8)]; chardata = &textgfx_data[(code * 8)];