summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/splash.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/splash.h')
-rw-r--r--src/mame/includes/splash.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/splash.h b/src/mame/includes/splash.h
index 6dfde5a0e12..b6d42302341 100644
--- a/src/mame/includes/splash.h
+++ b/src/mame/includes/splash.h
@@ -16,7 +16,8 @@ public:
m_msm(*this, "msm"),
m_msm1(*this, "msm1"),
m_msm2(*this, "msm2"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
required_shared_ptr<UINT16> m_pixelram;
required_shared_ptr<UINT16> m_videoram;
@@ -87,4 +88,5 @@ public:
optional_device<msm5205_device> m_msm1;
optional_device<msm5205_device> m_msm2;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};