summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/commando.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/commando.h')
-rw-r--r--src/mame/includes/commando.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/commando.h b/src/mame/includes/commando.h
index 2203d701c6d..e96f2b99bf3 100644
--- a/src/mame/includes/commando.h
+++ b/src/mame/includes/commando.h
@@ -18,7 +18,8 @@ public:
m_colorram(*this, "colorram"),
m_audiocpu(*this, "audiocpu"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
/* memory pointers */
required_device<buffered_spriteram8_device> m_spriteram;
@@ -54,4 +55,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;
};