summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/sprint8.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/sprint8.h')
-rw-r--r--src/mame/includes/sprint8.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/sprint8.h b/src/mame/includes/sprint8.h
index 1210289d039..804d724bfd0 100644
--- a/src/mame/includes/sprint8.h
+++ b/src/mame/includes/sprint8.h
@@ -12,7 +12,9 @@ public:
m_team(*this, "team"),
m_discrete(*this, "discrete"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_screen(*this, "screen"),
+ m_palette(*this, "palette") { }
int m_steer_dir[8];
int m_steer_flag[8];
@@ -52,6 +54,8 @@ public:
void sprint8_set_collision(int n);
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<screen_device> m_screen;
+ required_device<palette_device> m_palette;
};
/*----------- defined in drivers/sprint8.c -----------*/