summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/kan_pand.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/kan_pand.h')
-rw-r--r--src/mame/video/kan_pand.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mame/video/kan_pand.h b/src/mame/video/kan_pand.h
index c9ab639f868..f8db5da5815 100644
--- a/src/mame/video/kan_pand.h
+++ b/src/mame/video/kan_pand.h
@@ -30,6 +30,7 @@ public:
// static configuration
static void static_set_gfxdecode_tag(device_t &device, const char *tag);
+ static void static_set_palette_tag(device_t &device, const char *tag);
DECLARE_WRITE8_MEMBER ( spriteram_w );
DECLARE_READ8_MEMBER( spriteram_r );
@@ -55,6 +56,7 @@ private:
int m_clear_bitmap;
int m_bg_pen; // might work some other way..
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};
extern const device_type KANEKO_PANDORA;
@@ -71,4 +73,7 @@ extern const device_type KANEKO_PANDORA;
#define MCFG_KANEKO_PANDORA_GFXDECODE(_gfxtag) \
kaneko_pandora_device::static_set_gfxdecode_tag(*device, "^" _gfxtag);
+#define MCFG_KANEKO_PANDORA_PALETTE(_palette_tag) \
+ kaneko_pandora_device::static_set_palette_tag(*device, "^" _palette_tag);
+
#endif /* __KAN_PAND_H__ */