summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/markham.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/markham.h')
-rw-r--r--src/mame/includes/markham.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/markham.h b/src/mame/includes/markham.h
index da840971d90..8d0ad58cec6 100644
--- a/src/mame/includes/markham.h
+++ b/src/mame/includes/markham.h
@@ -13,7 +13,8 @@ public:
m_videoram(*this, "videoram"),
m_xscroll(*this, "xscroll"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
/* memory pointers */
required_shared_ptr<UINT8> m_spriteram;
@@ -32,4 +33,5 @@ public:
void 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;
};