summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/pingpong.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/pingpong.h')
-rw-r--r--src/mame/includes/pingpong.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/pingpong.h b/src/mame/includes/pingpong.h
index 2f876a56cfb..21b24c74cef 100644
--- a/src/mame/includes/pingpong.h
+++ b/src/mame/includes/pingpong.h
@@ -7,7 +7,8 @@ public:
m_colorram(*this, "colorram"),
m_videoram(*this, "videoram"),
m_spriteram(*this, "spriteram"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
int m_intenable;
int m_question_addr_high;
@@ -16,6 +17,7 @@ public:
required_shared_ptr<UINT8> m_videoram;
required_shared_ptr<UINT8> m_spriteram;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
tilemap_t *m_bg_tilemap;
DECLARE_WRITE8_MEMBER(cashquiz_question_bank_high_w);