summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/btoads.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/btoads.h')
-rw-r--r--src/mame/includes/btoads.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/btoads.h b/src/mame/includes/btoads.h
index b2b995efe92..4c36d841cec 100644
--- a/src/mame/includes/btoads.h
+++ b/src/mame/includes/btoads.h
@@ -29,7 +29,8 @@ public:
m_vram_bg1(*this, "vram_bg1"),
m_sprite_scale(*this, "sprite_scale"),
m_sprite_control(*this, "sprite_control") ,
- m_maincpu(*this, "maincpu") { }
+ m_maincpu(*this, "maincpu"),
+ m_screen(*this, "screen") { }
// in drivers/btoads
DECLARE_WRITE16_MEMBER( main_sound_w );
@@ -115,4 +116,5 @@ protected:
UINT16 m_misc_control;
int m_xcount;
required_device<cpu_device> m_maincpu;
+ required_device<screen_device> m_screen;
};