summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gunpey.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gunpey.c')
-rw-r--r--src/mame/drivers/gunpey.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/gunpey.c b/src/mame/drivers/gunpey.c
index c43f39a08dd..3be78ec4bf7 100644
--- a/src/mame/drivers/gunpey.c
+++ b/src/mame/drivers/gunpey.c
@@ -201,12 +201,14 @@ public:
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_oki(*this, "oki"),
- m_wram(*this, "wram")
+ m_wram(*this, "wram"),
+ m_palette(*this, "palette")
{ }
required_device<cpu_device> m_maincpu;
required_device<okim6295_device> m_oki;
required_shared_ptr<UINT16> m_wram;
+ required_device<palette_device> m_palette;
UINT16 *m_blit_buffer;
UINT16 m_blit_ram[0x10];