summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/destroyr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/destroyr.c')
-rw-r--r--src/mame/drivers/destroyr.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/drivers/destroyr.c b/src/mame/drivers/destroyr.c
index 7a82dafa039..a0fe9f0d787 100644
--- a/src/mame/drivers/destroyr.c
+++ b/src/mame/drivers/destroyr.c
@@ -31,7 +31,9 @@ public:
m_major_obj_ram(*this, "major_obj_ram"),
m_minor_obj_ram(*this, "minor_obj_ram"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
/* memory pointers */
required_shared_ptr<UINT8> m_alpha_num_ram;
@@ -52,6 +54,8 @@ public:
/* devices */
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
DECLARE_WRITE8_MEMBER(destroyr_misc_w);
DECLARE_WRITE8_MEMBER(destroyr_cursor_load_w);