summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/suna16.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/suna16.h
parent231d7c709abb698929c7871112c442b7c95015e6 (diff)
moved optional_device<gfxdecode_device> to specific drivers state classes (nw)
Diffstat (limited to 'src/mame/includes/suna16.h')
-rw-r--r--src/mame/includes/suna16.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/suna16.h b/src/mame/includes/suna16.h
index 955e5a10ee2..7374cd5766e 100644
--- a/src/mame/includes/suna16.h
+++ b/src/mame/includes/suna16.h
@@ -11,7 +11,8 @@ public:
m_dac1(*this, "dac1"),
m_dac2(*this, "dac2"),
m_dac3(*this, "dac3"),
- m_dac4(*this, "dac4")
+ m_dac4(*this, "dac4"),
+ m_gfxdecode(*this, "gfxdecode")
{ }
required_device<cpu_device> m_maincpu;
@@ -21,6 +22,7 @@ public:
required_device<dac_device> m_dac2;
optional_device<dac_device> m_dac3;
optional_device<dac_device> m_dac4;
+ required_device<gfxdecode_device> m_gfxdecode;
UINT8 m_prot;
UINT16 *m_paletteram;
int m_color_bank;