summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/poolshrk.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-02-17 15:46:55 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-02-17 15:46:55 +0000
commita3e4a45f1a514eb3743c2aea07353ec6f950fb7a (patch)
tree3d306087e66de98834e6d5f963b12b0ae9d2c3d2 /src/mame/includes/poolshrk.h
parent231d7c709abb698929c7871112c442b7c95015e6 (diff)
moved optional_device<gfxdecode_device> to specific drivers state classes (nw)
Diffstat (limited to 'src/mame/includes/poolshrk.h')
-rw-r--r--src/mame/includes/poolshrk.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/poolshrk.h b/src/mame/includes/poolshrk.h
index 804ecef9153..46cf094e388 100644
--- a/src/mame/includes/poolshrk.h
+++ b/src/mame/includes/poolshrk.h
@@ -17,7 +17,8 @@ public:
m_hpos_ram(*this, "hpos_ram"),
m_vpos_ram(*this, "vpos_ram"),
m_discrete(*this, "discrete"),
- m_maincpu(*this, "maincpu") { }
+ m_maincpu(*this, "maincpu"),
+ m_gfxdecode(*this, "gfxdecode") { }
int m_da_latch;
required_shared_ptr<UINT8> m_playfield_ram;
@@ -40,6 +41,7 @@ public:
DECLARE_WRITE8_MEMBER(poolshrk_click_sound_w);
DECLARE_WRITE8_MEMBER(poolshrk_bump_sound_w);
required_device<cpu_device> m_maincpu;
+ required_device<gfxdecode_device> m_gfxdecode;
};