From 4f0defb8c9d7e2b21ffefdc98a93108f7dc140c3 Mon Sep 17 00:00:00 2001 From: angelosa Date: Tue, 23 May 2023 04:41:09 +0200 Subject: apple/macpwrbk030.cpp: fix macpb180c colors --- src/mame/apple/macpwrbk030.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/apple/macpwrbk030.cpp b/src/mame/apple/macpwrbk030.cpp index d9187f3cee7..b4f55d755f6 100644 --- a/src/mame/apple/macpwrbk030.cpp +++ b/src/mame/apple/macpwrbk030.cpp @@ -504,7 +504,7 @@ u32 macpb030_state::screen_update_macpbwd(screen_device &screen, bitmap_rgb32 &b for (int x = 0; x < 640; x++) { u8 const pixels = vram8[(y * 640) + (BYTE4_XOR_BE(x))]; - *line++ = m_colors[pixels ^ 0xff]; + *line++ = m_wd_palette[pixels]; } } -- cgit v1.2.3