summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/psx/psx.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/psx/psx.c')
-rw-r--r--src/emu/cpu/psx/psx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/cpu/psx/psx.c b/src/emu/cpu/psx/psx.c
index 00aeb6fcfb5..bb0d07a13b6 100644
--- a/src/emu/cpu/psx/psx.c
+++ b/src/emu/cpu/psx/psx.c
@@ -2025,18 +2025,18 @@ void psxcpu_device::state_import( const device_state_entry &entry )
// for the debugger
//-------------------------------------------------
-void psxcpu_device::state_string_export( const device_state_entry &entry, astring &str )
+void psxcpu_device::state_string_export( const device_state_entry &entry, std::string &str )
{
switch( entry.index() )
{
case PSXCPU_DELAYR:
if( m_delayr <= PSXCPU_DELAYR_NOTPC )
{
- str.printf("%02x %-3s", m_delayr, delayn[m_delayr]);
+ strprintf(str, "%02x %-3s", m_delayr, delayn[m_delayr]);
}
else
{
- str.printf("%02x ---", m_delayr);
+ strprintf(str, "%02x ---", m_delayr);
}
break;
}