summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gaplus.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/gaplus.h
parent231d7c709abb698929c7871112c442b7c95015e6 (diff)
moved optional_device<gfxdecode_device> to specific drivers state classes (nw)
Diffstat (limited to 'src/mame/includes/gaplus.h')
-rw-r--r--src/mame/includes/gaplus.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/gaplus.h b/src/mame/includes/gaplus.h
index fe039ca729c..467310d9a8e 100644
--- a/src/mame/includes/gaplus.h
+++ b/src/mame/includes/gaplus.h
@@ -34,7 +34,8 @@ public:
m_samples(*this, "samples") ,
m_customio_3(*this,"customio_3"),
m_videoram(*this,"videoram"),
- m_spriteram(*this,"spriteram") { }
+ m_spriteram(*this,"spriteram"),
+ m_gfxdecode(*this, "gfxdecode") { }
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_subcpu;
@@ -44,6 +45,7 @@ public:
required_shared_ptr<UINT8> m_customio_3;
required_shared_ptr<UINT8> m_videoram;
required_shared_ptr<UINT8> m_spriteram;
+ required_device<gfxdecode_device> m_gfxdecode;
namco58xx_device *m_namco58xx;
namco56xx_device *m_namco56xx;