summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/strnskil.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/strnskil.h')
-rw-r--r--src/mame/includes/strnskil.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/strnskil.h b/src/mame/includes/strnskil.h
index 73e74e47777..35d9f3aa7c3 100644
--- a/src/mame/includes/strnskil.h
+++ b/src/mame/includes/strnskil.h
@@ -8,7 +8,8 @@ public:
m_videoram(*this, "videoram"),
m_xscroll(*this, "xscroll"),
m_spriteram(*this, "spriteram"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_subcpu;
@@ -16,6 +17,7 @@ public:
required_shared_ptr<UINT8> m_xscroll;
required_shared_ptr<UINT8> m_spriteram;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
UINT8 m_scrl_ctrl;
tilemap_t *m_bg_tilemap;