diff options
Diffstat (limited to 'src/emu/bus/scv')
-rw-r--r-- | src/emu/bus/scv/slot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/bus/scv/slot.c b/src/emu/bus/scv/slot.c index 93605370f84..0dbe91be6e0 100644 --- a/src/emu/bus/scv/slot.c +++ b/src/emu/bus/scv/slot.c @@ -49,8 +49,8 @@ void device_scv_cart_interface::rom_alloc(UINT32 size, const char *tag) { if (m_rom == NULL) { - astring tempstring(tag); - tempstring.cat(SCVSLOT_ROM_REGION_TAG); + std::string tempstring(tag); + tempstring.append(SCVSLOT_ROM_REGION_TAG); m_rom = device().machine().memory().region_alloc(tempstring.c_str(), size, 1, ENDIANNESS_LITTLE)->base(); m_rom_size = size; } |