summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/imagedev/harddriv.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/imagedev/harddriv.h')
-rw-r--r--src/devices/imagedev/harddriv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/imagedev/harddriv.h b/src/devices/imagedev/harddriv.h
index b72f7e4ee10..b85418e8c33 100644
--- a/src/devices/imagedev/harddriv.h
+++ b/src/devices/imagedev/harddriv.h
@@ -24,7 +24,7 @@ class harddisk_image_device : public device_t,
{
public:
// construction/destruction
- harddisk_image_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
+ harddisk_image_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
virtual ~harddisk_image_device();
static void static_set_device_load(device_t &device, device_image_load_delegate callback) { downcast<harddisk_image_device &>(device).m_device_image_load = callback; }
@@ -53,7 +53,7 @@ public:
chd_file *get_chd_file();
protected:
- harddisk_image_device(const machine_config &mconfig, device_type type, const char *name, std::string tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
+ harddisk_image_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
// device-level overrides
virtual void device_config_complete() override;