mirror of
https://github.com/holub/mame
synced 2025-10-05 00:38:58 +03:00
apple2: fixed inverse text drawing. [R. Belmont]
This commit is contained in:
parent
266efbe350
commit
16c5dcfa4a
@ -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)];
|
||||||
|
Loading…
Reference in New Issue
Block a user