small fix (nw)

This commit is contained in:
Miodrag Milanovic 2013-06-21 11:29:19 +00:00
parent 53ba0f61db
commit d49ea91e69
2 changed files with 3 additions and 3 deletions

View File

@ -80,8 +80,8 @@ samples_device::samples_device(const machine_config &mconfig, const char *tag, d
{
}
samples_device::samples_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, type, name, tag, owner, clock),
samples_device::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_t(mconfig, type, name, tag, owner, clock, shortname, source),
device_sound_interface(mconfig, *this)
{
}

View File

@ -118,7 +118,7 @@ public:
protected:
// subclasses can do it this way
samples_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock);
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();