summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/quizshow.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/quizshow.c')
-rw-r--r--src/mame/drivers/quizshow.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/quizshow.c b/src/mame/drivers/quizshow.c
index f8c2fb5f0f3..933d0b37a33 100644
--- a/src/mame/drivers/quizshow.c
+++ b/src/mame/drivers/quizshow.c
@@ -42,13 +42,15 @@ public:
m_maincpu(*this, "maincpu"),
m_dac(*this, "dac"),
m_main_ram(*this, "main_ram"),
- m_gfxdecode(*this, "gfxdecode")
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen")
{ }
required_device<cpu_device> m_maincpu;
required_device<dac_device> m_dac;
required_shared_ptr<UINT8> m_main_ram;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
tilemap_t *m_tilemap;
UINT32 m_clocks;