diff options
Diffstat (limited to 'src/devices/bus/amiga/zorro')
-rw-r--r-- | src/devices/bus/amiga/zorro/a590.cpp | 2 | ||||
-rw-r--r-- | src/devices/bus/amiga/zorro/a590.h | 2 | ||||
-rw-r--r-- | src/devices/bus/amiga/zorro/action_replay.cpp | 2 | ||||
-rw-r--r-- | src/devices/bus/amiga/zorro/action_replay.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/amiga/zorro/a590.cpp b/src/devices/bus/amiga/zorro/a590.cpp index 376e8cd2879..3b21b448c49 100644 --- a/src/devices/bus/amiga/zorro/a590.cpp +++ b/src/devices/bus/amiga/zorro/a590.cpp @@ -192,7 +192,7 @@ const rom_entry *dmac_hdc_device::device_rom_region() const //------------------------------------------------- dmac_hdc_device::dmac_hdc_device(const machine_config &mconfig, device_type type, std::string tag, - device_t *owner, UINT32 clock, const char *name, const char *shortname) : + device_t *owner, UINT32 clock, std::string name, std::string shortname) : device_t(mconfig, type, name, tag, owner, clock, shortname, __FILE__), m_int6(false), m_dmac(*this, "dmac"), diff --git a/src/devices/bus/amiga/zorro/a590.h b/src/devices/bus/amiga/zorro/a590.h index f787d51f260..a54bec0e694 100644 --- a/src/devices/bus/amiga/zorro/a590.h +++ b/src/devices/bus/amiga/zorro/a590.h @@ -30,7 +30,7 @@ class dmac_hdc_device : public device_t public: // construction/destruction dmac_hdc_device(const machine_config &mconfig, device_type type, std::string tag, - device_t *owner, UINT32 clock, const char *name, const char *shortname); + device_t *owner, UINT32 clock, std::string name, std::string shortname); // optional information overrides virtual machine_config_constructor device_mconfig_additions() const override; diff --git a/src/devices/bus/amiga/zorro/action_replay.cpp b/src/devices/bus/amiga/zorro/action_replay.cpp index 510ad153466..2e743f762b5 100644 --- a/src/devices/bus/amiga/zorro/action_replay.cpp +++ b/src/devices/bus/amiga/zorro/action_replay.cpp @@ -98,7 +98,7 @@ const rom_entry *action_replay_mk3_device::device_rom_region() const //------------------------------------------------- action_replay_device::action_replay_device(const machine_config &mconfig, device_type type, std::string tag, - device_t *owner, UINT32 clock, const char *name, const char *shortname) : + device_t *owner, UINT32 clock, std::string name, std::string shortname) : device_t(mconfig, type, name, tag, owner, clock, shortname, __FILE__), device_exp_card_interface(mconfig, *this), m_button(*this, "freeze") diff --git a/src/devices/bus/amiga/zorro/action_replay.h b/src/devices/bus/amiga/zorro/action_replay.h index f9f50173e3a..ad2b7fc3bb7 100644 --- a/src/devices/bus/amiga/zorro/action_replay.h +++ b/src/devices/bus/amiga/zorro/action_replay.h @@ -28,7 +28,7 @@ class action_replay_device : public device_t, public device_exp_card_interface public: // construction/destruction action_replay_device(const machine_config &mconfig, device_type type, std::string tag, - device_t *owner, UINT32 clock, const char *name, const char *shortname); + device_t *owner, UINT32 clock, std::string name, std::string shortname); // optional information overrides virtual ioport_constructor device_input_ports() const override; |