summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/latch.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/latch.h')
-rw-r--r--src/devices/machine/latch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/latch.h b/src/devices/machine/latch.h
index 66e08614b66..15e34737eb5 100644
--- a/src/devices/machine/latch.h
+++ b/src/devices/machine/latch.h
@@ -30,7 +30,7 @@
class output_latch_device : public device_t
{
public:
- output_latch_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ output_latch_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
template<class _Object> static devcb_base &set_bit0_handler(device_t &device, _Object object) { return downcast<output_latch_device &>(device).m_bit0_handler.set_callback(object); }
template<class _Object> static devcb_base &set_bit1_handler(device_t &device, _Object object) { return downcast<output_latch_device &>(device).m_bit1_handler.set_callback(object); }