summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/cclimber.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/cclimber.h')
-rw-r--r--src/mame/includes/cclimber.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/cclimber.h b/src/mame/includes/cclimber.h
index 63335496c94..5860d6a19b1 100644
--- a/src/mame/includes/cclimber.h
+++ b/src/mame/includes/cclimber.h
@@ -17,7 +17,8 @@ public:
m_toprollr_bg_coloram(*this, "bg_coloram"),
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_bigsprite_videoram;
required_shared_ptr<UINT8> m_videoram;
@@ -87,4 +88,5 @@ public:
required_device<cpu_device> m_maincpu;
optional_device<cpu_device> m_audiocpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};