summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/fcombat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/fcombat.h')
-rw-r--r--src/mame/includes/fcombat.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/fcombat.h b/src/mame/includes/fcombat.h
index 2c604e82111..fb54f5e61ed 100644
--- a/src/mame/includes/fcombat.h
+++ b/src/mame/includes/fcombat.h
@@ -30,7 +30,8 @@ public:
m_videoram(*this, "videoram"),
m_spriteram(*this, "spriteram"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
/* memory pointers */
required_shared_ptr<UINT8> m_videoram;
@@ -52,6 +53,7 @@ public:
/* devices */
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
DECLARE_READ8_MEMBER(fcombat_protection_r);
DECLARE_READ8_MEMBER(fcombat_port01_r);