summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/f1gp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/f1gp.h')
-rw-r--r--src/mame/includes/f1gp.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/f1gp.h b/src/mame/includes/f1gp.h
index 216b1ecd208..f48637ac832 100644
--- a/src/mame/includes/f1gp.h
+++ b/src/mame/includes/f1gp.h
@@ -26,7 +26,8 @@ public:
m_maincpu(*this, "maincpu"),
m_gfxdecode(*this, "gfxdecode"),
m_audiocpu(*this, "audiocpu"),
- m_k053936(*this, "k053936") { }
+ m_k053936(*this, "k053936"),
+ m_palette(*this, "palette") { }
/* memory pointers */
required_shared_ptr<UINT16> m_sharedram;
@@ -72,6 +73,7 @@ public:
required_device<gfxdecode_device> m_gfxdecode;
optional_device<cpu_device> m_audiocpu;
optional_device<k053936_device> m_k053936;
+ required_device<palette_device> m_palette;
DECLARE_WRITE8_MEMBER(f1gp_sh_bankswitch_w);
DECLARE_WRITE16_MEMBER(sound_command_w);