summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/nmk16.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/nmk16.h')
-rw-r--r--src/mame/includes/nmk16.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/nmk16.h b/src/mame/includes/nmk16.h
index b3dbf6c369d..0d8fd5b39f9 100644
--- a/src/mame/includes/nmk16.h
+++ b/src/mame/includes/nmk16.h
@@ -23,7 +23,8 @@ public:
m_nmk_bgvideoram3(*this, "nmk_bgvideoram3"),
m_afega_scroll_0(*this, "afega_scroll_0"),
m_afega_scroll_1(*this, "afega_scroll_1"),
- m_gfxdecode(*this, "gfxdecode") {}
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") {}
required_device<cpu_device> m_maincpu;
optional_device<cpu_device> m_audiocpu;
@@ -43,6 +44,7 @@ public:
optional_shared_ptr<UINT16> m_afega_scroll_0;
optional_shared_ptr<UINT16> m_afega_scroll_1;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
int mask[4*2];
int m_simple_scroll;
int m_redraw_bitmap;