summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/statriv2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/statriv2.c')
-rw-r--r--src/mame/drivers/statriv2.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/statriv2.c b/src/mame/drivers/statriv2.c
index ee700719809..0809a44230a 100644
--- a/src/mame/drivers/statriv2.c
+++ b/src/mame/drivers/statriv2.c
@@ -87,7 +87,8 @@ public:
m_tms(*this, "tms"),
m_videoram(*this, "videoram"),
m_question_offset(*this, "question_offset"),
- m_gfxdecode(*this, "gfxdecode")
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette")
{ }
required_device<cpu_device> m_maincpu;
@@ -96,6 +97,7 @@ public:
tilemap_t *m_tilemap;
required_shared_ptr<UINT8> m_question_offset;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
UINT8 m_question_offset_low;
UINT8 m_question_offset_mid;
UINT8 m_question_offset_high;