From e37b51f3cb17915a18f0f526d001cffd3bc60576 Mon Sep 17 00:00:00 2001 From: TimothyShiels Date: Thu, 22 Jun 2023 12:02:55 -0700 Subject: exidy/exidy.cpp: Corrected palettes for Targ and Spectar. (#11237) --- src/mame/exidy/exidy.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/mame/exidy/exidy.cpp b/src/mame/exidy/exidy.cpp index 7f6e6fc72e7..857ff428fa0 100644 --- a/src/mame/exidy/exidy.cpp +++ b/src/mame/exidy/exidy.cpp @@ -2550,19 +2550,19 @@ void spectar_state::init_sidetrac() void targ_state::init_targ() { - // hard-coded palette controlled via 8x3 DIP switches on the board - m_color_latch[2] = 0x5c; - m_color_latch[1] = 0xee; - m_color_latch[0] = 0x6b; + // hard-coded palette controlled via 8x3 jumpers on the color adapter board + m_color_latch[2] = 0x54; // Red + m_color_latch[1] = 0xee; // Green + m_color_latch[0] = 0x6b; // Blue } void spectar_state::init_spectar() { - // hard-coded palette controlled via 8x3 DIP switches on the board - m_color_latch[2] = 0x58; - m_color_latch[1] = 0xee; - m_color_latch[0] = 0x09; + // hard-coded palette controlled via 8x3 jumpers on the color adapter board + m_color_latch[2] = 0xda; // Red + m_color_latch[1] = 0xee; // Green + m_color_latch[0] = 0x61; // Blue } } // anonymous namespace -- cgit v1.2.3