diff options
Diffstat (limited to 'src/devices/bus/isa/cga.h')
-rw-r--r-- | src/devices/bus/isa/cga.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/isa/cga.h b/src/devices/bus/isa/cga.h index 7a3adcd15b3..8e2f9c32a62 100644 --- a/src/devices/bus/isa/cga.h +++ b/src/devices/bus/isa/cga.h @@ -27,7 +27,7 @@ class isa8_cga_device : public: // construction/destruction isa8_cga_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); - isa8_cga_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_cga_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); virtual MC6845_UPDATE_ROW( crtc_update_row ); MC6845_UPDATE_ROW( cga_text_inten_update_row ); @@ -98,7 +98,7 @@ class isa8_cga_superimpose_device : public: // construction/destruction isa8_cga_superimpose_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); - isa8_cga_superimpose_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_cga_superimpose_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 type definition |