From f1f0591f43f381123e8d9ec20c52eb7c0c332c79 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Sat, 29 Dec 2018 05:53:50 +1100 Subject: 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. --- src/mame/includes/starshp1.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mame/includes/starshp1.h') diff --git a/src/mame/includes/starshp1.h b/src/mame/includes/starshp1.h index 25bbf4ef447..028746b6ec7 100644 --- a/src/mame/includes/starshp1.h +++ b/src/mame/includes/starshp1.h @@ -88,7 +88,7 @@ private: DECLARE_WRITE8_MEMBER(starshp1_analog_out_w); TILE_GET_INFO_MEMBER(get_tile_info); virtual void video_start() override; - DECLARE_PALETTE_INIT(starshp1); + void starshp1_palette(palette_device &palette) const; uint32_t screen_update_starshp1(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); DECLARE_WRITE_LINE_MEMBER(screen_vblank_starshp1); INTERRUPT_GEN_MEMBER(starshp1_interrupt); -- cgit v1.2.3