summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/lc8670/lc8670.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/lc8670/lc8670.c')
-rw-r--r--src/emu/cpu/lc8670/lc8670.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/lc8670/lc8670.c b/src/emu/cpu/lc8670/lc8670.c
index 99f1119ae49..ac1fd1960d1 100644
--- a/src/emu/cpu/lc8670/lc8670.c
+++ b/src/emu/cpu/lc8670/lc8670.c
@@ -369,12 +369,12 @@ void lc8670_cpu_device::state_import(const device_state_entry &entry)
// for the debugger
//-------------------------------------------------
-void lc8670_cpu_device::state_string_export(const device_state_entry &entry, astring &str)
+void lc8670_cpu_device::state_string_export(const device_state_entry &entry, std::string &str)
{
switch (entry.index())
{
case STATE_GENFLAGS:
- str.printf("%s%s%s%s",
+ strprintf(str, "%s%s%s%s",
GET_CY ? "CY" : "..",
GET_AC ? "AC" : "..",
GET_OV ? "OV" : "..",