diff options
Diffstat (limited to 'src/emu/cpu/alph8201/alph8201.c')
-rw-r--r-- | src/emu/cpu/alph8201/alph8201.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/alph8201/alph8201.c b/src/emu/cpu/alph8201/alph8201.c index 922309c1fe6..6fb73a1eb4a 100644 --- a/src/emu/cpu/alph8201/alph8201.c +++ b/src/emu/cpu/alph8201/alph8201.c @@ -513,12 +513,12 @@ void alpha8201_cpu_device::state_export(const device_state_entry &entry) } -void alpha8201_cpu_device::state_string_export(const device_state_entry &entry, astring &str) +void alpha8201_cpu_device::state_string_export(const device_state_entry &entry, std::string &str) { switch (entry.index()) { case STATE_GENFLAGS: - str.printf("%c%c", m_cf ? 'C' : '.', m_zf ? 'Z' : '.'); + strprintf(str, "%c%c", m_cf ? 'C' : '.', m_zf ? 'Z' : '.'); break; } } |