summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/playmark.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/playmark.h')
-rw-r--r--src/mame/includes/playmark.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/playmark.h b/src/mame/includes/playmark.h
index ca741499265..22b7a9f2d5e 100644
--- a/src/mame/includes/playmark.h
+++ b/src/mame/includes/playmark.h
@@ -17,7 +17,8 @@ public:
m_eeprom(*this, "eeprom"),
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "audiocpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
/* memory pointers */
optional_shared_ptr<UINT16> m_bgvideoram;
@@ -110,4 +111,5 @@ public:
required_device<cpu_device> m_maincpu;
optional_device<pic16c57_device> m_audiocpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};