summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/dragrace.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/dragrace.h')
-rw-r--r--src/mame/includes/dragrace.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/dragrace.h b/src/mame/includes/dragrace.h
index f6f6413868c..c0962cb184c 100644
--- a/src/mame/includes/dragrace.h
+++ b/src/mame/includes/dragrace.h
@@ -31,7 +31,8 @@ public:
m_position_ram(*this, "position_ram"),
m_discrete(*this, "discrete"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen") { }
/* memory pointers */
required_shared_ptr<UINT8> m_playfield_ram;
@@ -61,6 +62,7 @@ public:
void dragrace_update_misc_flags( address_space &space );
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
};
/*----------- defined in audio/dragrace.c -----------*/