diff options
Diffstat (limited to 'src/devices/video/i8244.h')
-rw-r--r-- | src/devices/video/i8244.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/video/i8244.h b/src/devices/video/i8244.h index cb3cbaff7ca..b946f7bd2c0 100644 --- a/src/devices/video/i8244.h +++ b/src/devices/video/i8244.h @@ -80,8 +80,8 @@ class i8244_device : public device_t { public: // construction/destruction - i8244_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); - i8244_device(const machine_config &mconfig, device_type type, const char *name, std::string tag, device_t *owner, UINT32 clock, int lines, const char *shortname, const char *source); + i8244_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + i8244_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, int lines, const char *shortname, const char *source); // static configuration helpers static void set_screen_tag(device_t &device, const char *screen_tag) { downcast<i8244_device &>(device).m_screen_tag = screen_tag; } @@ -155,7 +155,7 @@ class i8245_device : public i8244_device { public: // construction/destruction - i8245_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); + i8245_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); static const int LINES = 312; }; |