summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/munchmo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/munchmo.h')
-rw-r--r--src/mame/includes/munchmo.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/munchmo.h b/src/mame/includes/munchmo.h
index b9a508c0728..446ffda735e 100644
--- a/src/mame/includes/munchmo.h
+++ b/src/mame/includes/munchmo.h
@@ -17,7 +17,8 @@ public:
m_vreg(*this, "vreg"),
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "audiocpu"),
- m_gfxdecode(*this, "gfxdecode"){ }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette"){ }
/* memory pointers */
required_shared_ptr<UINT8> m_sprite_xpos;
@@ -39,6 +40,7 @@ public:
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_audiocpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
DECLARE_WRITE8_MEMBER(mnchmobl_nmi_enable_w);
DECLARE_WRITE8_MEMBER(mnchmobl_soundlatch_w);