diff options
Diffstat (limited to 'src/mame/video/vrender0.h')
-rw-r--r-- | src/mame/video/vrender0.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/vrender0.h b/src/mame/video/vrender0.h index ddb0968a49b..b990afb8a45 100644 --- a/src/mame/video/vrender0.h +++ b/src/mame/video/vrender0.h @@ -35,12 +35,12 @@ struct RenderStateInfo class vr0video_device : public device_t { public: - vr0video_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); + vr0video_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); ~vr0video_device() {} int vrender0_ProcessPacket(UINT32 PacketPtr, UINT16 *Dest, UINT8 *TEXTURE); - static void set_cpu_tag(device_t &device, std::string tag) { downcast<vr0video_device &>(device).m_cpu.set_tag(tag); } + static void set_cpu_tag(device_t &device, const char *tag) { downcast<vr0video_device &>(device).m_cpu.set_tag(tag); } protected: // device-level overrides |