summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/stlforce.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/stlforce.h')
-rw-r--r--src/mame/includes/stlforce.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/stlforce.h b/src/mame/includes/stlforce.h
index ca944e3cc2e..21efd8d6dc4 100644
--- a/src/mame/includes/stlforce.h
+++ b/src/mame/includes/stlforce.h
@@ -18,7 +18,8 @@ public:
m_maincpu(*this, "maincpu"),
m_oki(*this, "oki"),
m_eeprom(*this, "eeprom"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
tilemap_t *m_bg_tilemap;
tilemap_t *m_mlow_tilemap;
@@ -56,4 +57,5 @@ public:
required_device<okim6295_device> m_oki;
required_device<eeprom_serial_93cxx_device> m_eeprom;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};