Previous 199869 Revisions Next

r23832 Friday 21st June, 2013 at 11:29:19 UTC by Miodrag Milanović
small fix (nw)
[src/emu/sound]samples.c samples.h

trunk/src/emu/sound/samples.c
r23831r23832
8080{
8181}
8282
83samples_device::samples_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock)
84   : device_t(mconfig, type, name, tag, owner, clock),
83samples_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)
84   : device_t(mconfig, type, name, tag, owner, clock, shortname, source),
8585      device_sound_interface(mconfig, *this)
8686{
8787}
trunk/src/emu/sound/samples.h
r23831r23832
118118
119119protected:
120120   // subclasses can do it this way
121   samples_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock);
121   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);
122122
123123   // device-level overrides
124124   virtual void device_start();

Previous 199869 Revisions Next


© 1997-2024 The MAME Team