diff options
Diffstat (limited to 'src/devices/video/msm6222b.h')
-rw-r--r-- | src/devices/video/msm6222b.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/video/msm6222b.h b/src/devices/video/msm6222b.h index cc83e0727f0..d86bcd63629 100644 --- a/src/devices/video/msm6222b.h +++ b/src/devices/video/msm6222b.h @@ -21,8 +21,8 @@ class msm6222b_device : public device_t { public: - msm6222b_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); - msm6222b_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); + msm6222b_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + msm6222b_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); void control_w(UINT8 data); UINT8 control_r(); @@ -50,7 +50,7 @@ private: class msm6222b_01_device : public msm6222b_device { public: - msm6222b_01_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); + msm6222b_01_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); protected: virtual const rom_entry *device_rom_region() const override; |