exidy/exidy.cpp: Corrected palettes for Targ and Spectar. (#11237)

This commit is contained in:
TimothyShiels 2023-06-22 12:02:55 -07:00 committed by GitHub
parent a7f5166778
commit e37b51f3cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2550,19 +2550,19 @@ void spectar_state::init_sidetrac()
void targ_state::init_targ() void targ_state::init_targ()
{ {
// hard-coded palette controlled via 8x3 DIP switches on the board // hard-coded palette controlled via 8x3 jumpers on the color adapter board
m_color_latch[2] = 0x5c; m_color_latch[2] = 0x54; // Red
m_color_latch[1] = 0xee; m_color_latch[1] = 0xee; // Green
m_color_latch[0] = 0x6b; m_color_latch[0] = 0x6b; // Blue
} }
void spectar_state::init_spectar() void spectar_state::init_spectar()
{ {
// hard-coded palette controlled via 8x3 DIP switches on the board // hard-coded palette controlled via 8x3 jumpers on the color adapter board
m_color_latch[2] = 0x58; m_color_latch[2] = 0xda; // Red
m_color_latch[1] = 0xee; m_color_latch[1] = 0xee; // Green
m_color_latch[0] = 0x09; m_color_latch[0] = 0x61; // Blue
} }
} // anonymous namespace } // anonymous namespace