summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/vigilant.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/vigilant.h')
-rw-r--r--src/mame/includes/vigilant.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/vigilant.h b/src/mame/includes/vigilant.h
index 71732bbe6a3..0e0fcb8fba9 100644
--- a/src/mame/includes/vigilant.h
+++ b/src/mame/includes/vigilant.h
@@ -9,7 +9,8 @@ public:
m_videoram(*this, "videoram"),
m_maincpu(*this, "maincpu"),
m_audio(*this, "m72"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
required_shared_ptr<UINT8> m_spriteram;
required_shared_ptr<UINT8> m_videoram;
@@ -17,6 +18,7 @@ public:
required_device<cpu_device> m_maincpu;
required_device<m72_audio_device> m_audio;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
int m_horiz_scroll_low;
int m_horiz_scroll_high;