diff options
| author | 2023-05-23 04:41:09 +0200 | |
|---|---|---|
| committer | 2023-05-23 04:41:09 +0200 | |
| commit | 4f0defb8c9d7e2b21ffefdc98a93108f7dc140c3 (patch) | |
| tree | 20f25b85deffb1a2ba974e9c04f913fe05c42a67 /src | |
| parent | 58895a78c38e8d1888f58d70ec5a798264caf304 (diff) | |
apple/macpwrbk030.cpp: fix macpb180c colors
Diffstat (limited to 'src')
| -rw-r--r-- | src/mame/apple/macpwrbk030.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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]; } } |
