From b99742eacb6fb2ea4e697ce948acb448cd4be76e Mon Sep 17 00:00:00 2001 From: Patrick Mackinlay Date: Mon, 24 Sep 2018 16:42:43 +0700 Subject: bt459: 4 bits per pixel, not 3 (nw) --- src/devices/video/bt459.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/video/bt459.cpp b/src/devices/video/bt459.cpp index da7d2ac8899..6e1ba2294d1 100644 --- a/src/devices/video/bt459.cpp +++ b/src/devices/video/bt459.cpp @@ -548,8 +548,8 @@ void bt459_device::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, co { u8 data = *pixel_data++; - bitmap.pix(y, x + 1) = get_rgb(data & 0x7, pixel_mask); data >>= 4; - bitmap.pix(y, x + 0) = get_rgb(data & 0x7, pixel_mask); + bitmap.pix(y, x + 1) = get_rgb(data & 0xf, pixel_mask); data >>= 4; + bitmap.pix(y, x + 0) = get_rgb(data & 0xf, pixel_mask); } break; -- cgit v1.2.3