mirror of
https://github.com/holub/mame
synced 2025-04-25 09:50:04 +03:00
Device description fixes from MASH (nw)
This commit is contained in:
parent
9e9d50d798
commit
ac79d15878
@ -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)
|
||||
{
|
||||
}
|
||||
|
@ -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),
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user