From 7a87d06ae69b7dbe6625fc520cded39d560331b8 Mon Sep 17 00:00:00 2001 From: lidnariq Date: Fri, 28 Jun 2024 11:40:06 +0100 Subject: Casio PV-1000: Border colors are wrong (blue and red are swapped) (#12515) --- src/mame/casio/pv1000.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/casio/pv1000.cpp b/src/mame/casio/pv1000.cpp index 3912d7662d7..9ec3b3b2632 100644 --- a/src/mame/casio/pv1000.cpp +++ b/src/mame/casio/pv1000.cpp @@ -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); -- cgit v1.2.3