summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/4enraya.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/4enraya.h')
-rw-r--r--src/mame/includes/4enraya.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/4enraya.h b/src/mame/includes/4enraya.h
index 34bd311c598..cfe6923dd58 100644
--- a/src/mame/includes/4enraya.h
+++ b/src/mame/includes/4enraya.h
@@ -14,7 +14,8 @@ public:
m_ay(*this, "aysnd"),
m_snd_latch_bit(4),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
required_device<ay8910_device> m_ay;
@@ -49,4 +50,5 @@ public:
UINT32 screen_update_4enraya(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;
};