summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/bwing.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/bwing.h')
-rw-r--r--src/mame/includes/bwing.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/bwing.h b/src/mame/includes/bwing.h
index b1e93d07d5a..72a083fce71 100644
--- a/src/mame/includes/bwing.h
+++ b/src/mame/includes/bwing.h
@@ -20,7 +20,8 @@ public:
m_maincpu(*this, "maincpu"),
m_subcpu(*this, "sub"),
m_audiocpu(*this, "audiocpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
/* memory pointers */
required_shared_ptr<UINT8> m_bwp1_sharedram1;
@@ -56,6 +57,7 @@ public:
required_device<cpu_device> m_subcpu;
required_device<cpu_device> m_audiocpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
DECLARE_WRITE8_MEMBER(bwp12_sharedram1_w);
DECLARE_WRITE8_MEMBER(bwp3_u8F_w);