diff options
Diffstat (limited to 'src/mame/includes/micro3d.h')
-rw-r--r-- | src/mame/includes/micro3d.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/micro3d.h b/src/mame/includes/micro3d.h index e6295b78ae0..2b9a826a8d2 100644 --- a/src/mame/includes/micro3d.h +++ b/src/mame/includes/micro3d.h @@ -50,7 +50,7 @@ public: TIMER_ADC_DONE }; - micro3d_state(const machine_config &mconfig, device_type type, const char *tag) + micro3d_state(const machine_config &mconfig, device_type type, std::string tag) : driver_device(mconfig, type, tag), m_maincpu(*this, "maincpu"), m_audiocpu(*this, "audiocpu"), @@ -229,7 +229,7 @@ class micro3d_sound_device : public device_t, public device_sound_interface { public: - micro3d_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + micro3d_sound_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); ~micro3d_sound_device() {} void noise_sh_w(UINT8 data); |