summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/smartmed.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/smartmed.h')
-rw-r--r--src/mame/machine/smartmed.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/machine/smartmed.h b/src/mame/machine/smartmed.h
index 251dc563365..15ad48d4235 100644
--- a/src/mame/machine/smartmed.h
+++ b/src/mame/machine/smartmed.h
@@ -57,8 +57,8 @@ class nand_device : public device_t
{
public:
// construction/destruction
- nand_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
- nand_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);
+ nand_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ nand_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);
template<class _Object> static devcb_base &set_rnb_wr_callback(device_t &device, _Object object) { return downcast<nand_device &>(device).m_write_rnb.set_callback(object); }
@@ -201,7 +201,7 @@ class smartmedia_image_device : public nand_device,
{
public:
// construction/destruction
- smartmedia_image_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
+ smartmedia_image_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
// image-level overrides
virtual iodevice_t image_type() const override { return IO_MEMCARD; }