summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/holeland.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/holeland.h')
-rw-r--r--src/mame/includes/holeland.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/holeland.h b/src/mame/includes/holeland.h
index f84e3315c1e..e8195b1f08e 100644
--- a/src/mame/includes/holeland.h
+++ b/src/mame/includes/holeland.h
@@ -13,7 +13,8 @@ public:
m_colorram(*this, "colorram"),
m_spriteram(*this, "spriteram"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
/* memory pointers */
required_shared_ptr<UINT8> m_videoram;
@@ -39,4 +40,5 @@ public:
void crzrally_draw_sprites( bitmap_ind16 &bitmap,const rectangle &cliprect );
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};