summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/polepos.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/polepos.h')
-rw-r--r--src/mame/includes/polepos.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/polepos.h b/src/mame/includes/polepos.h
index cb29b2b1613..95719c3578e 100644
--- a/src/mame/includes/polepos.h
+++ b/src/mame/includes/polepos.h
@@ -18,7 +18,8 @@ public:
m_sprite16_memory(*this, "sprite16_memory"),
m_road16_memory(*this, "road16_memory"),
m_alpha16_memory(*this, "alpha16_memory"),
- m_view16_memory(*this, "view16_memory"){ }
+ m_view16_memory(*this, "view16_memory"),
+ m_maincpu(*this, "maincpu") { }
optional_device<tms5220n_device> m_tms;
UINT8 m_steer_last;
@@ -87,6 +88,7 @@ public:
void draw_road(bitmap_ind16 &bitmap);
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect );
void zoom_sprite(bitmap_ind16 &bitmap,int big,UINT32 code,UINT32 color,int flipx,int sx,int sy,int sizex,int sizey);
+ required_device<cpu_device> m_maincpu;
};