summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/bus/intv/slot.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/bus/intv/slot.c')
-rw-r--r--src/emu/bus/intv/slot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/bus/intv/slot.c b/src/emu/bus/intv/slot.c
index 2702247554b..956668a5133 100644
--- a/src/emu/bus/intv/slot.c
+++ b/src/emu/bus/intv/slot.c
@@ -459,7 +459,7 @@ bool intv_cart_slot_device::call_softlist_load(software_list_device &swlist, con
get default card software
-------------------------------------------------*/
-void intv_cart_slot_device::get_default_card_software(astring &result)
+void intv_cart_slot_device::get_default_card_software(std::string &result)
{
if (open_image_file(mconfig().options()))
{
@@ -503,7 +503,7 @@ void intv_cart_slot_device::get_default_card_software(astring &result)
//printf("type: %s\n", slot_string);
clear();
- result.cpy(slot_string);
+ result.assign(slot_string);
return;
}
software_get_default_slot(result, "intv_rom");