summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/bus/intv/ecs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/bus/intv/ecs.c')
-rw-r--r--src/emu/bus/intv/ecs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/bus/intv/ecs.c b/src/emu/bus/intv/ecs.c
index 7862b1cc1e2..67da5066caa 100644
--- a/src/emu/bus/intv/ecs.c
+++ b/src/emu/bus/intv/ecs.c
@@ -54,8 +54,8 @@ void intv_ecs_device::device_start()
// if the ECS is mounted directly in the system, use device rom and alloc RAM
if (m_rom == NULL)
{
- astring region_tag;
- m_rom = memregion(region_tag.cpy(tag()).cat(":ecs").c_str())->base();
+ std::string region_tag;
+ m_rom = memregion(region_tag.assign(tag()).append(":ecs").c_str())->base();
}
if (m_ram.empty())
{