summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/tagteam.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/tagteam.h')
-rw-r--r--src/mame/includes/tagteam.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/tagteam.h b/src/mame/includes/tagteam.h
index 7fa14433159..84ea9fb73de 100644
--- a/src/mame/includes/tagteam.h
+++ b/src/mame/includes/tagteam.h
@@ -7,7 +7,8 @@ public:
m_colorram(*this, "colorram"),
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "audiocpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
required_shared_ptr<UINT8> m_videoram;
required_shared_ptr<UINT8> m_colorram;
@@ -36,4 +37,5 @@ public:
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_audiocpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};