(MESS) abc806: Fixed blackness. (nw)

This commit is contained in:
Curt Coder 2014-03-31 14:22:29 +00:00
parent b75c70eb0f
commit 410adb11f8

View File

@ -325,13 +325,13 @@ static MC6845_UPDATE_ROW( abc806_update_row )
for (int bit = 0; bit < ABC800_CHAR_WIDTH; bit++)
{
int color = BIT(chargen_data, 7) ? fg_color : bg_color;
if (!de) color = rgb_t::black;
if (!de) color = 0;
bitmap.pix32(y, x++) = PALETTE_ABC[color & 0x07];
bitmap.pix32(y, x++) = PALETTE_ABC[color];
if (e5 || e6)
{
bitmap.pix32(y, x++) = PALETTE_ABC[color & 0x07];
bitmap.pix32(y, x++) = PALETTE_ABC[color];
}
chargen_data <<= 1;