diff options
Diffstat (limited to 'src/devices/bus/isa/aga.h')
-rw-r--r-- | src/devices/bus/isa/aga.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/isa/aga.h b/src/devices/bus/isa/aga.h index e9a312f4569..c0c80ac29bb 100644 --- a/src/devices/bus/isa/aga.h +++ b/src/devices/bus/isa/aga.h @@ -37,8 +37,8 @@ class isa8_aga_device : { public: // construction/destruction - isa8_aga_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); - isa8_aga_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); + isa8_aga_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + isa8_aga_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_start() override; // optional information overrides @@ -106,7 +106,7 @@ class isa8_aga_pc200_device : { public: // construction/destruction - isa8_aga_pc200_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); + isa8_aga_pc200_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); // device-level overrides virtual void device_start() override; // optional information overrides |