summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/k033906.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/k033906.h')
-rw-r--r--src/devices/machine/k033906.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/k033906.h b/src/devices/machine/k033906.h
index a2a51370045..aa2c685df99 100644
--- a/src/devices/machine/k033906.h
+++ b/src/devices/machine/k033906.h
@@ -33,9 +33,9 @@ class k033906_device : public device_t
{
public:
// construction/destruction
- k033906_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
+ k033906_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
- static void set_voodoo_tag(device_t &device, std::string tag) { downcast<k033906_device &>(device).m_voodoo_tag = tag; }
+ static void set_voodoo_tag(device_t &device, const char *tag) { downcast<k033906_device &>(device).m_voodoo_tag = tag; }
DECLARE_READ32_MEMBER( read );
DECLARE_WRITE32_MEMBER( write );
@@ -57,7 +57,7 @@ private:
int m_reg_set; // 1 = access reg / 0 = access ram
- std::string m_voodoo_tag;
+ const char *m_voodoo_tag;
device_t *m_voodoo;
UINT32 m_reg[256];