summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/bankp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/bankp.h')
-rw-r--r--src/mame/includes/bankp.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/bankp.h b/src/mame/includes/bankp.h
index 81c2c761b95..682f19dd066 100644
--- a/src/mame/includes/bankp.h
+++ b/src/mame/includes/bankp.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") { }
/* memory pointers */
required_shared_ptr<UINT8> m_videoram;
@@ -44,4 +45,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;
};