summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/plygonet.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-04-23 13:56:01 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-04-23 13:56:01 +0000
commit856a4c71191c4a4e69c2c85f417b7a6e2bfea36c (patch)
treef2cc36925bc104c3e86c7267e0af7a9572afe119 /src/mame/includes/plygonet.h
parent248c2ced08e1657b0014761f405bbfeb8308cea1 (diff)
Moved m_generic_paletteram_* into drivers/device state objects so they are not global anymore (nw)
Diffstat (limited to 'src/mame/includes/plygonet.h')
-rw-r--r--src/mame/includes/plygonet.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mame/includes/plygonet.h b/src/mame/includes/plygonet.h
index fac776ee797..fb34b91b4bf 100644
--- a/src/mame/includes/plygonet.h
+++ b/src/mame/includes/plygonet.h
@@ -22,7 +22,8 @@ public:
m_dsp56k_p_mirror(*this, "dsp56k_p_mirror"),
m_dsp56k_p_8000(*this, "dsp56k_p_8000"),
m_gfxdecode(*this, "gfxdecode"),
- m_palette(*this, "palette")
+ m_palette(*this, "palette"),
+ m_generic_paletteram_32(*this, "paletteram")
{ }
required_device<cpu_device> m_maincpu;
@@ -38,6 +39,8 @@ public:
required_shared_ptr<UINT16> m_dsp56k_p_8000;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
+ required_shared_ptr<UINT32> m_generic_paletteram_32;
+
ioport_port *m_inputs[4];
UINT8 m_sys0;
UINT8 m_sys1;