diff options
author | 2016-01-16 12:24:11 +0100 | |
---|---|---|
committer | 2016-01-16 14:54:42 +0100 | |
commit | 1f90ceab075c4869298e963bf0a14a0aac2f1caa (patch) | |
tree | 49984b30e3c6da6a0be068dbfcd02882bdafdc08 /src/devices/video/dl1416.h | |
parent | 34161178c431b018cba0d0286951c69aee80e968 (diff) |
tags are now strings (nw)
fix start project for custom builds in Visual Studio (nw)
Diffstat (limited to 'src/devices/video/dl1416.h')
-rw-r--r-- | src/devices/video/dl1416.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/video/dl1416.h b/src/devices/video/dl1416.h index e3526bd95be..00cb4e4f574 100644 --- a/src/devices/video/dl1416.h +++ b/src/devices/video/dl1416.h @@ -31,7 +31,7 @@ class dl1416_device : public device_t { public: - dl1416_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); + dl1416_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); ~dl1416_device() {} template<class _Object> static devcb_base &set_update_handler(device_t &device, _Object object) { return downcast<dl1416_device &>(device).m_update.set_callback(object); } @@ -61,7 +61,7 @@ private: class dl1416b_device : public dl1416_device { public: - dl1416b_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + dl1416b_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); }; extern const device_type DL1416B; @@ -69,7 +69,7 @@ extern const device_type DL1416B; class dl1416t_device : public dl1416_device { public: - dl1416t_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + dl1416t_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); }; extern const device_type DL1416T; |