summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/superdq.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/superdq.c')
-rw-r--r--src/mame/drivers/superdq.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/superdq.c b/src/mame/drivers/superdq.c
index d5e872fc844..763e6c08d4f 100644
--- a/src/mame/drivers/superdq.c
+++ b/src/mame/drivers/superdq.c
@@ -35,7 +35,8 @@ public:
m_laserdisc(*this, "laserdisc") ,
m_videoram(*this, "videoram"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
required_device<pioneer_ldv1000_device> m_laserdisc;
UINT8 m_ld_in_latch;
@@ -57,6 +58,7 @@ public:
INTERRUPT_GEN_MEMBER(superdq_vblank);
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};
TILE_GET_INFO_MEMBER(superdq_state::get_tile_info)