summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/armedf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/armedf.h')
-rw-r--r--src/mame/includes/armedf.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/armedf.h b/src/mame/includes/armedf.h
index 90df87bd7c0..1d44d9bbae0 100644
--- a/src/mame/includes/armedf.h
+++ b/src/mame/includes/armedf.h
@@ -11,7 +11,8 @@ public:
m_bg_videoram(*this, "bg_videoram"),
m_maincpu(*this, "maincpu"),
m_extra(*this, "extra"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
/* memory pointers */
UINT8 * m_text_videoram;
@@ -91,6 +92,7 @@ public:
required_device<cpu_device> m_maincpu;
optional_device<cpu_device> m_extra;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};
class bigfghtr_state : public armedf_state