summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/cubeqst.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/cubeqst.c')
-rw-r--r--src/mame/drivers/cubeqst.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/cubeqst.c b/src/mame/drivers/cubeqst.c
index fc92f7c2318..2b46d58a4b0 100644
--- a/src/mame/drivers/cubeqst.c
+++ b/src/mame/drivers/cubeqst.c
@@ -33,7 +33,8 @@ public:
m_laserdisc(*this, "laserdisc"),
m_rotatecpu(*this, "rotate_cpu"),
m_linecpu(*this, "line_cpu"),
- m_soundcpu(*this, "sound_cpu") { }
+ m_soundcpu(*this, "sound_cpu"),
+ m_screen(*this, "screen") { }
UINT8 *m_depth_buffer;
int m_video_field;
@@ -43,6 +44,7 @@ public:
required_device<cquestrot_cpu_device> m_rotatecpu;
required_device<cquestlin_cpu_device> m_linecpu;
required_device<cquestsnd_cpu_device> m_soundcpu;
+ required_device<screen_device> m_screen;
rgb_t *m_colormap;
DECLARE_WRITE16_MEMBER(palette_w);
DECLARE_READ16_MEMBER(line_r);