Device description fixes from MASH (nw)

This commit is contained in:
Scott Stone 2014-05-30 14:04:12 +00:00
parent 9e9d50d798
commit ac79d15878
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@
const device_type EXCELLENT_SPRITE = &device_creator<excellent_spr_device>;
excellent_spr_device::excellent_spr_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, EXCELLENT_SPRITE, "Excllent 8-bit Sprite", tag, owner, clock, "excellent_spr", __FILE__),
: device_t(mconfig, EXCELLENT_SPRITE, "Excellent 8-bit Sprite", tag, owner, clock, "excellent_spr", __FILE__),
device_video_interface(mconfig, *this)
{
}

View File

@ -6,7 +6,7 @@
const device_type TECMO_MIXER = &device_creator<tecmo_mix_device>;
tecmo_mix_device::tecmo_mix_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, TECMO_MIXER, "Teccmo 16-bit Mixer", tag, owner, clock, "tecmo_mix", __FILE__),
: device_t(mconfig, TECMO_MIXER, "Tecmo 16-bit Mixer", tag, owner, clock, "tecmo_mix", __FILE__),
device_video_interface(mconfig, *this),
m_sprpri_shift(0),
m_sprbln_shift(0),

View File

@ -16,7 +16,7 @@
const device_type TECMO_SPRITE = &device_creator<tecmo_spr_device>;
tecmo_spr_device::tecmo_spr_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, TECMO_SPRITE, "Teccmo Chained Sprites", tag, owner, clock, "tecmo_spr", __FILE__),
: device_t(mconfig, TECMO_SPRITE, "Tecmo Chained Sprites", tag, owner, clock, "tecmo_spr", __FILE__),
m_gfxregion(0),
m_bootleg(0)
{