summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/mame/casio/pv1000.cpp4
1 files 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);