summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/trackfld.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/trackfld.h')
-rw-r--r--src/mame/includes/trackfld.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/trackfld.h b/src/mame/includes/trackfld.h
index af33eca9c90..a1604933cc9 100644
--- a/src/mame/includes/trackfld.h
+++ b/src/mame/includes/trackfld.h
@@ -21,7 +21,8 @@ public:
m_maincpu(*this, "maincpu"),
m_sn(*this, "snsnd"),
m_vlm(*this, "vlm"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
/* memory pointers */
required_shared_ptr<UINT8> m_spriteram2;
@@ -36,6 +37,7 @@ public:
optional_device<sn76496_device> m_sn;
optional_device<vlm5030_device> m_vlm;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
/* video-related */
tilemap_t *m_bg_tilemap;