summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/bloodbro.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/bloodbro.h')
-rw-r--r--src/mame/includes/bloodbro.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/bloodbro.h b/src/mame/includes/bloodbro.h
index b0b093b6ec4..5832fe3cfc3 100644
--- a/src/mame/includes/bloodbro.h
+++ b/src/mame/includes/bloodbro.h
@@ -8,7 +8,8 @@ public:
m_fgvideoram(*this, "fgvideoram"),
m_txvideoram(*this, "txvideoram"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
required_shared_ptr<UINT16> m_spriteram;
required_shared_ptr<UINT16> m_bgvideoram;
@@ -37,4 +38,5 @@ public:
void weststry_draw_sprites(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};