summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/bus/scv
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-04-19 09:29:57 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2015-04-19 09:29:57 +0200
commit3dcf442d7b85e78db30bd5ff5e936b2045f62f0c (patch)
tree4d88d8726819eb11c84331c69f22d87200f2d0f5 /src/emu/bus/scv
parent3c3ee1d1775274c0358425c8692b5f9b82c99a8a (diff)
astring to std::string in bus section (nw)
Diffstat (limited to 'src/emu/bus/scv')
-rw-r--r--src/emu/bus/scv/slot.c4
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;
}