summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/timeplt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/timeplt.h')
-rw-r--r--src/mame/includes/timeplt.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/timeplt.h b/src/mame/includes/timeplt.h
index 48dfb86f44a..bd703acb045 100644
--- a/src/mame/includes/timeplt.h
+++ b/src/mame/includes/timeplt.h
@@ -17,7 +17,9 @@ public:
m_videoram(*this, "videoram"),
m_spriteram(*this, "spriteram"),
m_spriteram2(*this, "spriteram2"),
- m_gfxdecode(*this, "gfxdecode")
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette")
{ }
required_device<cpu_device> m_maincpu;
@@ -30,6 +32,8 @@ public:
required_shared_ptr<UINT8> m_spriteram2;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
/* video-related */
tilemap_t *m_bg_tilemap;