summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/wrally.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/wrally.h')
-rw-r--r--src/mame/includes/wrally.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/wrally.h b/src/mame/includes/wrally.h
index 7caeb61eabb..52e3a8daa57 100644
--- a/src/mame/includes/wrally.h
+++ b/src/mame/includes/wrally.h
@@ -8,7 +8,8 @@ public:
m_spriteram(*this, "spriteram"),
m_shareram(*this, "shareram"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
tilemap_t *m_pant[2];
required_shared_ptr<UINT16> m_videoram;
@@ -30,4 +31,5 @@ public:
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect, int priority);
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};