diff options
author | 2016-01-16 20:05:32 +0100 | |
---|---|---|
committer | 2016-01-16 20:05:32 +0100 | |
commit | caba131d844ade3f2b30d6be24ea6cf46b2949d7 (patch) | |
tree | 03a87639748f22e37c6ef572354e8662517b7ec9 /src/devices/bus/z88 | |
parent | 2d96e6f4d304f1e8dbc15d305b9445769724219b (diff) |
rest of device parameters to std::string (nw)
Diffstat (limited to 'src/devices/bus/z88')
-rw-r--r-- | src/devices/bus/z88/ram.cpp | 2 | ||||
-rw-r--r-- | src/devices/bus/z88/ram.h | 2 | ||||
-rw-r--r-- | src/devices/bus/z88/rom.cpp | 2 | ||||
-rw-r--r-- | src/devices/bus/z88/rom.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/z88/ram.cpp b/src/devices/bus/z88/ram.cpp index 5a534e6564d..2f3fe2975b3 100644 --- a/src/devices/bus/z88/ram.cpp +++ b/src/devices/bus/z88/ram.cpp @@ -38,7 +38,7 @@ z88_32k_ram_device::z88_32k_ram_device(const machine_config &mconfig, std::strin { } -z88_32k_ram_device::z88_32k_ram_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) +z88_32k_ram_device::z88_32k_ram_device(const machine_config &mconfig, device_type type, std::string name, std::string tag, device_t *owner, UINT32 clock, std::string shortname, std::string source) : device_t(mconfig, type, name, tag, owner, clock, shortname, source), device_z88cart_interface( mconfig, *this ), m_ram(nullptr) { diff --git a/src/devices/bus/z88/ram.h b/src/devices/bus/z88/ram.h index b02630b67dc..0ceb051278f 100644 --- a/src/devices/bus/z88/ram.h +++ b/src/devices/bus/z88/ram.h @@ -20,7 +20,7 @@ class z88_32k_ram_device : public device_t, public: // construction/destruction z88_32k_ram_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); - z88_32k_ram_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); + z88_32k_ram_device(const machine_config &mconfig, device_type type, std::string name, std::string tag, device_t *owner, UINT32 clock, std::string shortname, std::string source); protected: // device-level overrides diff --git a/src/devices/bus/z88/rom.cpp b/src/devices/bus/z88/rom.cpp index aab89859be2..21d5ff34aeb 100644 --- a/src/devices/bus/z88/rom.cpp +++ b/src/devices/bus/z88/rom.cpp @@ -37,7 +37,7 @@ z88_32k_rom_device::z88_32k_rom_device(const machine_config &mconfig, std::strin { } -z88_32k_rom_device::z88_32k_rom_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) +z88_32k_rom_device::z88_32k_rom_device(const machine_config &mconfig, device_type type, std::string name, std::string tag, device_t *owner, UINT32 clock, std::string shortname, std::string source) : device_t(mconfig, type, name, tag, owner, clock, shortname, source), device_z88cart_interface( mconfig, *this ), m_rom(nullptr) { diff --git a/src/devices/bus/z88/rom.h b/src/devices/bus/z88/rom.h index 696ee31f41c..835fa3a54a5 100644 --- a/src/devices/bus/z88/rom.h +++ b/src/devices/bus/z88/rom.h @@ -20,7 +20,7 @@ class z88_32k_rom_device : public device_t, public: // construction/destruction z88_32k_rom_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); - z88_32k_rom_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); + z88_32k_rom_device(const machine_config &mconfig, device_type type, std::string name, std::string tag, device_t *owner, UINT32 clock, std::string shortname, std::string source); protected: // device-level overrides |