summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/kchamp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/kchamp.h')
-rw-r--r--src/mame/includes/kchamp.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/kchamp.h b/src/mame/includes/kchamp.h
index 609ccd48a7a..09dda8a0883 100644
--- a/src/mame/includes/kchamp.h
+++ b/src/mame/includes/kchamp.h
@@ -16,7 +16,8 @@ public:
m_audiocpu(*this, "audiocpu"),
m_maincpu(*this, "maincpu"),
m_msm(*this, "msm"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
/* memory pointers */
required_shared_ptr<UINT8> m_videoram;
@@ -64,4 +65,5 @@ public:
required_device<cpu_device> m_maincpu;
optional_device<msm5205_device> m_msm;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};