summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/segas32.c
diff options
context:
space:
mode:
author Alex W. Jackson <alex.w.jackson@gmail.com>2014-03-15 07:34:54 +0000
committer Alex W. Jackson <alex.w.jackson@gmail.com>2014-03-15 07:34:54 +0000
commit25db822531d1e3533f9c65baa656a6b548a30082 (patch)
tree27008f49daa85c4e2bf76de9c83eb960817c7d15 /src/mame/drivers/segas32.c
parent9a3885ad4e113354c87fc063908d8bd7e7a4699d (diff)
Checkpoint 2:
gfxdecode devices must now be assigned a palette in MCFG. Added palette devices to several MESS drivers and devices to comply with this requirement. This palette is assigned as a default to the gfx_elements created by the device (but still not used for drawing yet, except in the UI graphics viewer) Tilemaps now have a pointer to a palette device and use that palette for rgb32 drawing, rather than the palette of the screen or bitmap they are drawing to (since rgb32 screens don't have palettes now). When a tilemap is created, it takes its palette from the gfxdecode device it was created with, but you can change a tilemap's palette device with set_palette() at any time (doing this does not mark the tilemap dirty, since all tilemaps use indexed bitmaps internally)
Diffstat (limited to 'src/mame/drivers/segas32.c')
-rw-r--r--src/mame/drivers/segas32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/segas32.c b/src/mame/drivers/segas32.c
index f9142692e67..4737ca2ca4c 100644
--- a/src/mame/drivers/segas32.c
+++ b/src/mame/drivers/segas32.c
@@ -2343,7 +2343,7 @@ static MACHINE_CONFIG_START( system32, segas32_state )
MCFG_TIMER_DRIVER_ADD("v60_irq1", segas32_state, signal_v60_irq_callback)
/* video hardware */
- MCFG_GFXDECODE_ADD("gfxdecode", segas32)
+ MCFG_GFXDECODE_ADD("gfxdecode", "palette", segas32)
MCFG_PALETTE_ADD("palette", 0x4000)
MCFG_SCREEN_ADD("screen", RASTER)
@@ -2400,7 +2400,7 @@ static MACHINE_CONFIG_START( multi32, segas32_state )
MCFG_TIMER_DRIVER_ADD("v60_irq1", segas32_state, signal_v60_irq_callback)
/* video hardware */
- MCFG_GFXDECODE_ADD("gfxdecode", segas32)
+ MCFG_GFXDECODE_ADD("gfxdecode", "palette", segas32)
MCFG_PALETTE_ADD("palette", 0x8000)
MCFG_DEFAULT_LAYOUT(layout_dualhsxs)