summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/am29000/am29000.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/am29000/am29000.c')
-rw-r--r--src/emu/cpu/am29000/am29000.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/am29000/am29000.c b/src/emu/cpu/am29000/am29000.c
index 8ebb37c014f..d100f44c351 100644
--- a/src/emu/cpu/am29000/am29000.c
+++ b/src/emu/cpu/am29000/am29000.c
@@ -402,12 +402,12 @@ void am29000_cpu_device::device_start()
}
-void am29000_cpu_device::state_string_export(const device_state_entry &entry, astring &str)
+void am29000_cpu_device::state_string_export(const device_state_entry &entry, std::string &str)
{
switch (entry.index())
{
case STATE_GENFLAGS:
- str.printf("%c%c%c%c%c%c%c%c%c|%3d", m_alu & ALU_V ? 'V' : '.',
+ strprintf(str, "%c%c%c%c%c%c%c%c%c|%3d", m_alu & ALU_V ? 'V' : '.',
m_alu & ALU_Z ? 'Z' : '.',
m_alu & ALU_N ? 'N' : '.',
m_alu & ALU_C ? 'C' : '.',