diff options
author | 2016-01-16 20:05:32 +0100 | |
---|---|---|
committer | 2016-01-16 20:05:32 +0100 | |
commit | caba131d844ade3f2b30d6be24ea6cf46b2949d7 (patch) | |
tree | 03a87639748f22e37c6ef572354e8662517b7ec9 /src/emu/video | |
parent | 2d96e6f4d304f1e8dbc15d305b9445769724219b (diff) |
rest of device parameters to std::string (nw)
Diffstat (limited to 'src/emu/video')
-rw-r--r-- | src/emu/video/vector.cpp | 2 | ||||
-rw-r--r-- | src/emu/video/vector.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/video/vector.cpp b/src/emu/video/vector.cpp index 6ea77d2edb1..b832a0d00c3 100644 --- a/src/emu/video/vector.cpp +++ b/src/emu/video/vector.cpp @@ -128,7 +128,7 @@ static render_texture *get_vector_texture(float dx, float dy, float intensity) // device type definition const device_type VECTOR = &device_creator<vector_device>; -vector_device::vector_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) +vector_device::vector_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_t(mconfig, type, name, tag, owner, clock, shortname, source), device_video_interface(mconfig, *this), m_vector_list(nullptr), diff --git a/src/emu/video/vector.h b/src/emu/video/vector.h index f1fb3539708..38436047bee 100644 --- a/src/emu/video/vector.h +++ b/src/emu/video/vector.h @@ -37,7 +37,7 @@ class vector_device : public device_t, public device_video_interface public: // construction/destruction vector_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); - vector_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); + vector_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); UINT32 screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); void clear_list(); |