(MESS) Removed palette access. (nw)

This commit is contained in:
Curt Coder 2012-09-13 14:32:24 +00:00
parent d4f26563e3
commit 0af1f7acdc

View File

@ -95,7 +95,7 @@ void c64_xl80_device::crtc_update_row(mc6845_device *device, bitmap_rgb32 &bitma
for (int bit = 0; bit < 8; bit++)
{
int x = (column * 8) + bit;
int color = BIT(data, 7) ? 7 : 0;
int color = BIT(data, 7);
bitmap.pix32(y, x) = RGB_MONOCHROME_WHITE[color];