diff options
Diffstat (limited to 'src/mame/drivers/jtc.cpp')
-rw-r--r-- | src/mame/drivers/jtc.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/jtc.cpp b/src/mame/drivers/jtc.cpp index 9b1c4c9544d..07114be0ac1 100644 --- a/src/mame/drivers/jtc.cpp +++ b/src/mame/drivers/jtc.cpp @@ -25,7 +25,7 @@ class jtc_state : public driver_device { public: - jtc_state(const machine_config &mconfig, device_type type, std::string tag) + jtc_state(const machine_config &mconfig, device_type type, const char *tag) : driver_device(mconfig, type, tag), m_maincpu(*this, UB8830D_TAG), m_cassette(*this, "cassette"), @@ -57,7 +57,7 @@ public: class jtces88_state : public jtc_state { public: - jtces88_state(const machine_config &mconfig, device_type type, std::string tag) + jtces88_state(const machine_config &mconfig, device_type type, const char *tag) : jtc_state(mconfig, type, tag) { } }; @@ -66,7 +66,7 @@ public: class jtces23_state : public jtc_state { public: - jtces23_state(const machine_config &mconfig, device_type type, std::string tag) + jtces23_state(const machine_config &mconfig, device_type type, const char *tag) : jtc_state(mconfig, type, tag) { } @@ -78,7 +78,7 @@ public: class jtces40_state : public jtc_state { public: - jtces40_state(const machine_config &mconfig, device_type type, std::string tag) + jtces40_state(const machine_config &mconfig, device_type type, const char *tag) : jtc_state(mconfig, type, tag) { } |