diff options
Diffstat (limited to 'src/devices/sound/samples.h')
-rw-r--r-- | src/devices/sound/samples.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/samples.h b/src/devices/sound/samples.h index 7d42a2f0f0c..f1512853a6a 100644 --- a/src/devices/sound/samples.h +++ b/src/devices/sound/samples.h @@ -42,7 +42,7 @@ class samples_device : public device_t, { public: // construction/destruction - samples_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock); + samples_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); // static configuration helpers static void static_set_channels(device_t &device, UINT8 channels) { downcast<samples_device &>(device).m_channels = channels; } @@ -82,7 +82,7 @@ public: protected: // subclasses can do it this way - samples_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); + samples_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source); // device-level overrides virtual void device_start() override; |