summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/thepit.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/thepit.h')
-rw-r--r--src/mame/includes/thepit.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/thepit.h b/src/mame/includes/thepit.h
index 16d63fc3384..f9b0c8ac0fb 100644
--- a/src/mame/includes/thepit.h
+++ b/src/mame/includes/thepit.h
@@ -8,7 +8,8 @@ public:
m_attributesram(*this, "attributesram"),
m_spriteram(*this, "spriteram"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
int m_question_address;
int m_question_rom;
@@ -45,4 +46,5 @@ public:
INTERRUPT_GEN_MEMBER(vblank_irq);
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};