summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/spdodgeb.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/spdodgeb.h')
-rw-r--r--src/mame/includes/spdodgeb.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/spdodgeb.h b/src/mame/includes/spdodgeb.h
index c33b29f424d..8f995fc6f0b 100644
--- a/src/mame/includes/spdodgeb.h
+++ b/src/mame/includes/spdodgeb.h
@@ -11,7 +11,9 @@ public:
m_audiocpu(*this, "audiocpu"),
m_msm1(*this, "msm1"),
m_msm2(*this, "msm2"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
int m_toggle;
int m_adpcm_pos[2];
@@ -64,4 +66,6 @@ public:
required_device<msm5205_device> m_msm1;
required_device<msm5205_device> m_msm2;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
};