summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/decmxc06.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/decmxc06.cpp')
-rw-r--r--src/mame/video/decmxc06.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/decmxc06.cpp b/src/mame/video/decmxc06.cpp
index cb396dd5245..888d5ae6ada 100644
--- a/src/mame/video/decmxc06.cpp
+++ b/src/mame/video/decmxc06.cpp
@@ -49,7 +49,7 @@ void deco_mxc06_device::set_gfx_region(device_t &device, int region)
const device_type DECO_MXC06 = &device_creator<deco_mxc06_device>;
-deco_mxc06_device::deco_mxc06_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock)
+deco_mxc06_device::deco_mxc06_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, DECO_MXC06, "DECO MXC06 Sprite", tag, owner, clock, "deco_mxc06", __FILE__),
device_video_interface(mconfig, *this),
m_gfxregion(0),
@@ -64,7 +64,7 @@ deco_mxc06_device::deco_mxc06_device(const machine_config &mconfig, std::string
// gfx decoder
//-------------------------------------------------
-void deco_mxc06_device::static_set_gfxdecode_tag(device_t &device, std::string tag)
+void deco_mxc06_device::static_set_gfxdecode_tag(device_t &device, const char *tag)
{
downcast<deco_mxc06_device &>(device).m_gfxdecode.set_tag(tag);
}
@@ -229,7 +229,7 @@ void deco_mxc06_device::device_reset()
// palette device
//-------------------------------------------------
-void deco_mxc06_device::static_set_palette_tag(device_t &device, std::string tag)
+void deco_mxc06_device::static_set_palette_tag(device_t &device, const char *tag)
{
downcast<deco_mxc06_device &>(device).m_palette.set_tag(tag);
}