diff options
Diffstat (limited to 'src/mame/includes/rallyx.h')
-rw-r--r-- | src/mame/includes/rallyx.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mame/includes/rallyx.h b/src/mame/includes/rallyx.h index 6e2fdd0d64f..69d09eab6ac 100644 --- a/src/mame/includes/rallyx.h +++ b/src/mame/includes/rallyx.h @@ -9,6 +9,7 @@ #include "sound/namco.h" #include "sound/samples.h" #include "emupal.h" +#include "screen.h" class rallyx_state : public driver_device { @@ -29,7 +30,8 @@ public: m_samples(*this, "samples"), m_timeplt_audio(*this, "timeplt_audio"), m_gfxdecode(*this, "gfxdecode"), - m_palette(*this, "palette") + m_palette(*this, "palette"), + m_screen(*this, "screen") { } /* memory pointers */ @@ -59,6 +61,7 @@ public: optional_device<timeplt_audio_device> m_timeplt_audio; required_device<gfxdecode_device> m_gfxdecode; required_device<palette_device> m_palette; + required_device<screen_device> m_screen; bool m_main_irq_mask; DECLARE_WRITE8_MEMBER(rallyx_interrupt_vector_w); |