summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/tbowl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/tbowl.h')
-rw-r--r--src/mame/includes/tbowl.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/tbowl.h b/src/mame/includes/tbowl.h
index f767fa9d8a3..7c62d5b30f7 100644
--- a/src/mame/includes/tbowl.h
+++ b/src/mame/includes/tbowl.h
@@ -14,7 +14,8 @@ public:
m_audiocpu(*this, "audiocpu"),
m_msm1(*this, "msm1"),
m_msm2(*this, "msm2"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
int m_adpcm_pos[2];
int m_adpcm_end[2];
@@ -69,4 +70,5 @@ public:
required_device<msm5205_device> m_msm1;
required_device<msm5205_device> m_msm2;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};