summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mugsmash.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mugsmash.h')
-rw-r--r--src/mame/includes/mugsmash.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/mugsmash.h b/src/mame/includes/mugsmash.h
index 741729ff56b..65670cc0794 100644
--- a/src/mame/includes/mugsmash.h
+++ b/src/mame/includes/mugsmash.h
@@ -11,7 +11,8 @@ public:
m_spriteram(*this, "spriteram"),
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "audiocpu"),
- m_gfxdecode(*this, "gfxdecode"){ }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette"){ }
required_shared_ptr<UINT16> m_videoram1;
required_shared_ptr<UINT16> m_videoram2;
@@ -25,6 +26,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_WRITE16_MEMBER(mugsmash_reg2_w);
DECLARE_READ16_MEMBER(mugsmash_input_ports_r);