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/devices/bus/pet/hsg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/devices/bus/pet') diff --git a/src/devices/bus/pet/hsg.cpp b/src/devices/bus/pet/hsg.cpp index 78e6e557e1c..5288b632174 100644 --- a/src/devices/bus/pet/hsg.cpp +++ b/src/devices/bus/pet/hsg.cpp @@ -97,7 +97,7 @@ MACHINE_CONFIG_START(cbm8000_hsg_a_device::device_add_mconfig) MCFG_SCREEN_SIZE(512, 512) MCFG_SCREEN_VISIBLE_AREA(0, 512-1, 0, 512-1) MCFG_SCREEN_REFRESH_RATE(25) - MCFG_PALETTE_ADD_MONOCHROME("palette") + PALETTE(config, "palette", palette_device::MONOCHROME); MCFG_DEVICE_ADD(EF9365_TAG, EF9365, 1750000) MCFG_VIDEO_SET_SCREEN(SCREEN_TAG) @@ -113,7 +113,7 @@ MACHINE_CONFIG_START(cbm8000_hsg_b_device::device_add_mconfig) MCFG_SCREEN_SIZE(512, 256) MCFG_SCREEN_VISIBLE_AREA(0, 512-1, 0, 256-1) MCFG_SCREEN_REFRESH_RATE(50) - MCFG_PALETTE_ADD_MONOCHROME("palette") + PALETTE(config, "palette", palette_device::MONOCHROME); MCFG_DEVICE_ADD(EF9366_TAG, EF9365, 1750000) MCFG_VIDEO_SET_SCREEN(SCREEN_TAG) -- cgit v1.2.3-70-g09d2