summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/umipoker.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/umipoker.c')
-rw-r--r--src/mame/drivers/umipoker.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/umipoker.c b/src/mame/drivers/umipoker.c
index 1d8d1b81024..b53e6c8cc93 100644
--- a/src/mame/drivers/umipoker.c
+++ b/src/mame/drivers/umipoker.c
@@ -35,7 +35,8 @@ public:
m_vram_3(*this, "vra3"),
m_z80_wram(*this, "z80_wram"),
m_maincpu(*this, "maincpu"),
- m_gfxdecode(*this, "gfxdecode") { }
+ m_gfxdecode(*this, "gfxdecode"),
+ m_palette(*this, "palette") { }
required_shared_ptr<UINT16> m_vram_0;
required_shared_ptr<UINT16> m_vram_1;
@@ -74,6 +75,7 @@ public:
UINT32 screen_update_umipoker(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
+ required_device<palette_device> m_palette;
};
TILE_GET_INFO_MEMBER(umipoker_state::get_tile_info_0)