summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/sauro.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/sauro.h')
-rw-r--r--src/mame/includes/sauro.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/sauro.h b/src/mame/includes/sauro.h
index 1ed9c6b86d4..2335322e59f 100644
--- a/src/mame/includes/sauro.h
+++ b/src/mame/includes/sauro.h
@@ -14,7 +14,8 @@ public:
m_videoram2(*this, "videoram2"),
m_colorram2(*this, "colorram2"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
optional_device<sp0256_device> m_sp0256;
required_shared_ptr<UINT8> m_spriteram;
@@ -51,4 +52,5 @@ public:
void trckydoc_draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};