From 0af1f7acdc3cf204b9e429938aa48b6c79fe7cb6 Mon Sep 17 00:00:00 2001 From: Curt Coder Date: Thu, 13 Sep 2012 14:32:24 +0000 Subject: [PATCH] (MESS) Removed palette access. (nw) --- src/mess/machine/c64_xl80.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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];