summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/solomon.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/solomon.h')
-rw-r--r--src/mame/includes/solomon.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/solomon.h b/src/mame/includes/solomon.h
index 20ca618b808..843be9b9e72 100644
--- a/src/mame/includes/solomon.h
+++ b/src/mame/includes/solomon.h
@@ -10,7 +10,8 @@ public:
m_colorram2(*this, "colorram2"),
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_spriteram;
required_shared_ptr<UINT8> m_videoram;
@@ -39,4 +40,5 @@ public:
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_audiocpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};