From 21a7aabf9e07f8900846cf91bd1711f9a208ad08 Mon Sep 17 00:00:00 2001 From: Scott Stone Date: Tue, 12 Apr 2016 07:59:33 -0400 Subject: [PATCH] Give unique descriptions and short names to new SegaCrypt Z80 devices so that they show up properly in devices listings. (nw) --- src/mame/machine/segacrp2_device.cpp | 2 +- src/mame/machine/segacrpt_device.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/machine/segacrp2_device.cpp b/src/mame/machine/segacrp2_device.cpp index 5682da2411f..5c0db860879 100644 --- a/src/mame/machine/segacrp2_device.cpp +++ b/src/mame/machine/segacrp2_device.cpp @@ -100,7 +100,7 @@ const device_type SEGA_317_0007 = &device_creator; -segacrp2_z80_device::segacrp2_z80_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : z80_device(mconfig, SEGACRP2_Z80, "Z80", tag, owner, clock, "z80_sega2", __FILE__) {} +segacrp2_z80_device::segacrp2_z80_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : z80_device(mconfig, SEGACRP2_Z80, "Z80 SegaCrypt2", tag, owner, clock, "z80_sega2", __FILE__) {} void segacrp2_z80_device::device_start() { z80_device::device_start(); decrypt(); } void segacrp2_z80_device::device_reset() { z80_device::device_reset(); } void segacrp2_z80_device::decrypt() { } diff --git a/src/mame/machine/segacrpt_device.cpp b/src/mame/machine/segacrpt_device.cpp index 96d50cbc1dd..c7b8395fb43 100644 --- a/src/mame/machine/segacrpt_device.cpp +++ b/src/mame/machine/segacrpt_device.cpp @@ -289,7 +289,7 @@ const device_type SEGA_CPU_PBACTIO4 = &device_creator segacrpt_z80_device::segacrpt_z80_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : - z80_device(mconfig, SEGACRPT_Z80, "Z80", tag, owner, clock, "z80_sega2", __FILE__), + z80_device(mconfig, SEGACRPT_Z80, "Z80 SegaCrypt", tag, owner, clock, "z80_sega", __FILE__), m_decrypted_ptr(nullptr), m_region_ptr(nullptr), m_decode_size(0x8000),