summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/40love.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/40love.h')
-rw-r--r--src/mame/includes/40love.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/40love.h b/src/mame/includes/40love.h
index 7e6ef8ce1f0..13d42da0b9b 100644
--- a/src/mame/includes/40love.h
+++ b/src/mame/includes/40love.h
@@ -17,7 +17,8 @@ public:
m_mcu(*this, "mcu"),
m_bmcu(*this, "bmcu"),
m_msm(*this, "msm"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
/* memory pointers */
required_shared_ptr<UINT8> m_videoram;
@@ -71,6 +72,7 @@ public:
optional_device<buggychl_mcu_device> m_bmcu;
required_device<msm5232_device> m_msm;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
DECLARE_WRITE8_MEMBER(sound_command_w);
DECLARE_WRITE8_MEMBER(nmi_disable_w);