summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/hyperspt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/hyperspt.h')
-rw-r--r--src/mame/includes/hyperspt.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/hyperspt.h b/src/mame/includes/hyperspt.h
index c95c9456436..c100a2ca009 100644
--- a/src/mame/includes/hyperspt.h
+++ b/src/mame/includes/hyperspt.h
@@ -14,7 +14,8 @@ public:
m_sn(*this, "snsnd"),
m_maincpu(*this, "maincpu"),
m_vlm(*this, "vlm"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
/* memory pointers */
required_shared_ptr<UINT8> m_spriteram;
@@ -25,6 +26,7 @@ public:
required_device<cpu_device> m_maincpu;
optional_device<vlm5030_device> m_vlm;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
UINT8 * m_scroll2;
UINT8 * m_spriteram2;