summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/dday.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/dday.h')
-rw-r--r--src/mame/includes/dday.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/dday.h b/src/mame/includes/dday.h
index ba6666214b2..3806699721e 100644
--- a/src/mame/includes/dday.h
+++ b/src/mame/includes/dday.h
@@ -15,7 +15,9 @@ public:
m_bgvideoram(*this, "bgvideoram"),
m_colorram(*this, "colorram"),
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_textvideoram;
@@ -57,4 +59,6 @@ public:
void start_countdown_timer();
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
};