diff --git a/src/mess/machine/c64_xl80.c b/src/mess/machine/c64_xl80.c index 78f6a1ff063..a8a55093340 100644 --- a/src/mess/machine/c64_xl80.c +++ b/src/mess/machine/c64_xl80.c @@ -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];