Casio PV-1000: Border colors are wrong (blue and red are swapped) (#12515)

This commit is contained in:
lidnariq 2024-06-28 11:40:06 +01:00 committed by GitHub
parent 7c283b8825
commit 7a87d06ae6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -457,7 +457,7 @@ static const gfx_layout pv1000_3bpp_gfx =
8, 8, /* 8x8 characters */
RGN_FRAC(1,1),
3,
{ 0, 8*8, 16*8 },
{ 16*8, 8*8, 0 },
{ 0, 1, 2, 3, 4, 5, 6, 7 },
{ 0*8, 1*8, 2*8, 3*8, 4*8, 5*8, 6*8, 7*8 },
8*8*4
@ -482,7 +482,7 @@ void pv1000_state::pv1000(machine_config &config)
m_screen->set_screen_update(FUNC(pv1000_state::screen_update_pv1000));
m_screen->set_palette(m_palette);
PALETTE(config, m_palette, palette_device::BGR_3BIT);
PALETTE(config, m_palette, palette_device::RGB_3BIT);
GFXDECODE(config, m_gfxdecode, m_palette, gfx_pv1000);