summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/etc/template_driver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/etc/template_driver.cpp')
-rw-r--r--src/mame/etc/template_driver.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/etc/template_driver.cpp b/src/mame/etc/template_driver.cpp
index 967bdb33314..d126c66ee16 100644
--- a/src/mame/etc/template_driver.cpp
+++ b/src/mame/etc/template_driver.cpp
@@ -35,15 +35,15 @@ protected:
virtual void video_start() override;
private:
- // devices
- required_device<cpu_device> m_maincpu;
+ // screen updates
+ uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ void xxx_palette(palette_device *palette) const;
void xxx_io(address_map &map);
void xxx_map(address_map &map);
- // screen updates
- uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- DECLARE_PALETTE_INIT(xxx);
+ // devices
+ required_device<cpu_device> m_maincpu;
};
void xxx_state::video_start()
@@ -146,7 +146,7 @@ void xxx_state::machine_reset()
}
-PALETTE_INIT_MEMBER(xxx_state, xxx)
+void xxx_state::xxx_palette(palette_device &palette) const
{
}
@@ -170,7 +170,7 @@ void xxx_state::xxx(machine_config &config)
GFXDECODE(config, "gfxdecode", "palette", gfx_xxx);
- PALETTE(config, "palette", 8).set_init(palette_init_delegate(FUNC(xxx_state::xxx), this));
+ PALETTE(config, "palette", FUNC(xxx_state::xxx_palette), 8);
/* sound hardware */
SPEAKER(config, "mono").front_center();