summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/galaxia.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-12-29 05:53:50 +1100
committer Vas Crabb <vas@vastheman.com>2018-12-29 05:53:50 +1100
commitf1f0591f43f381123e8d9ec20c52eb7c0c332c79 (patch)
tree97c8dd30a6ea292c3189f372b8103a2e303c0b2d /src/mame/drivers/galaxia.cpp
parent65bfb2654f0c73235f114e9145c766245bed9790 (diff)
Start cleaning up palette configuration:
* Basically, initialisers go in the constructor arguments, and things for setting format go in set_format. * Initialisation patterns can be specified with an enum discriminator or with a FUNC and optionally a tag. * Formats can be specified with an enum discriminator or a size and function pointer. * You must always supply the number of entries when setting the format. * When initislising with a paletter initialisation member, you can specify the entries and indirecte entries together. * The palette_device now has a standard constructor, so use .set_entries if you are specifying entry count with no format/initialisation. * Also killed an overload on delegates that wasn't being useful.
Diffstat (limited to 'src/mame/drivers/galaxia.cpp')
-rw-r--r--src/mame/drivers/galaxia.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/galaxia.cpp b/src/mame/drivers/galaxia.cpp
index ce634e9bd65..d334e3d4a04 100644
--- a/src/mame/drivers/galaxia.cpp
+++ b/src/mame/drivers/galaxia.cpp
@@ -322,7 +322,7 @@ void galaxia_state::galaxia(machine_config &config)
m_screen->screen_vblank().set(FUNC(galaxia_state::vblank_irq));
GFXDECODE(config, m_gfxdecode, m_palette, gfx_galaxia);
- PALETTE(config, m_palette, 0x18+2).set_init(FUNC(galaxia_state::palette_init_galaxia));
+ PALETTE(config, m_palette, FUNC(galaxia_state::galaxia_palette), 0x18+2);
MCFG_VIDEO_START_OVERRIDE(galaxia_state,galaxia)
@@ -364,7 +364,7 @@ void galaxia_state::astrowar(machine_config &config)
m_screen->screen_vblank().set(FUNC(galaxia_state::vblank_irq));
GFXDECODE(config, m_gfxdecode, m_palette, gfx_astrowar);
- PALETTE(config, m_palette, 0x18+2).set_init(FUNC(galaxia_state::palette_init_astrowar));
+ PALETTE(config, m_palette, FUNC(galaxia_state::astrowar_palette), 0x18+2);
MCFG_VIDEO_START_OVERRIDE(galaxia_state,astrowar)