diff options
author | 2015-04-18 18:35:04 +0200 | |
---|---|---|
committer | 2015-04-18 18:35:04 +0200 | |
commit | 59bb9d4fd68f870bb3d05317953ec73cdb13fe14 (patch) | |
tree | b624a31d2d8d62f496d82fb0f4c12f1a3d13e5a7 /src/emu/bus/vic20 | |
parent | 6a41d76a80e505ba3f772a39acdd5cafe14a1987 (diff) |
some astring to std::string conversion (nw)
Diffstat (limited to 'src/emu/bus/vic20')
-rw-r--r-- | src/emu/bus/vic20/exp.c | 2 | ||||
-rw-r--r-- | src/emu/bus/vic20/exp.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/bus/vic20/exp.c b/src/emu/bus/vic20/exp.c index 0091f1368f2..a6f80554593 100644 --- a/src/emu/bus/vic20/exp.c +++ b/src/emu/bus/vic20/exp.c @@ -170,7 +170,7 @@ bool vic20_expansion_slot_device::call_softlist_load(software_list_device &swlis // get_default_card_software - //------------------------------------------------- -void vic20_expansion_slot_device::get_default_card_software(astring &result) +void vic20_expansion_slot_device::get_default_card_software(std::string &result) { software_get_default_slot(result, "standard"); } diff --git a/src/emu/bus/vic20/exp.h b/src/emu/bus/vic20/exp.h index 7fab2965790..13d3ccef43d 100644 --- a/src/emu/bus/vic20/exp.h +++ b/src/emu/bus/vic20/exp.h @@ -128,7 +128,7 @@ protected: virtual const option_guide *create_option_guide() const { return NULL; } // slot interface overrides - virtual void get_default_card_software(astring &result); + virtual void get_default_card_software(std::string &result); devcb_write_line m_write_irq; devcb_write_line m_write_nmi; |