diff options
Diffstat (limited to 'src/mame/includes/phoenix.h')
-rw-r--r-- | src/mame/includes/phoenix.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/phoenix.h b/src/mame/includes/phoenix.h index 0f423efea69..36ccbde6663 100644 --- a/src/mame/includes/phoenix.h +++ b/src/mame/includes/phoenix.h @@ -7,7 +7,7 @@ class phoenix_state : public driver_device { public: - phoenix_state(const machine_config &mconfig, device_type type, const char *tag) + phoenix_state(const machine_config &mconfig, device_type type, std::string tag) : driver_device(mconfig, type, tag) , m_maincpu(*this, "maincpu"), m_pleiads_custom(*this, "pleiads_custom"), @@ -83,7 +83,7 @@ class phoenix_sound_device : public device_t, public device_sound_interface { public: - phoenix_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + phoenix_sound_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); ~phoenix_sound_device() {} DECLARE_WRITE8_MEMBER( control_a_w ); |