diff options
author | 2015-04-12 16:54:10 +0200 | |
---|---|---|
committer | 2015-04-12 16:54:10 +0200 | |
commit | 87f705b984df084f2a6658d838d6b56eee576e13 (patch) | |
tree | bee6c295b35db2143b130f1780bdb94a000ba96a /src/emu/cpu/mcs48 | |
parent | f2243d602081b2f5ccf5b1dfe0e9530e30567a2a (diff) |
string -> str rename due to future conflicts (nw)
Diffstat (limited to 'src/emu/cpu/mcs48')
-rw-r--r-- | src/emu/cpu/mcs48/mcs48.c | 4 | ||||
-rw-r--r-- | src/emu/cpu/mcs48/mcs48.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/cpu/mcs48/mcs48.c b/src/emu/cpu/mcs48/mcs48.c index 901d90e6330..e3cd5a1b716 100644 --- a/src/emu/cpu/mcs48/mcs48.c +++ b/src/emu/cpu/mcs48/mcs48.c @@ -1295,12 +1295,12 @@ void mcs48_cpu_device::state_export(const device_state_entry &entry) } } -void mcs48_cpu_device::state_string_export(const device_state_entry &entry, astring &string) +void mcs48_cpu_device::state_string_export(const device_state_entry &entry, astring &str) { switch (entry.index()) { case STATE_GENFLAGS: - string.printf("%c%c %c%c%c%c%c%c%c%c", + str.printf("%c%c %c%c%c%c%c%c%c%c", m_irq_state ? 'I':'.', m_a11 ? 'M':'.', m_psw & 0x80 ? 'C':'.', diff --git a/src/emu/cpu/mcs48/mcs48.h b/src/emu/cpu/mcs48/mcs48.h index c1d19bc6c30..655c8111f07 100644 --- a/src/emu/cpu/mcs48/mcs48.h +++ b/src/emu/cpu/mcs48/mcs48.h @@ -150,7 +150,7 @@ protected: // device_state_interface overrides virtual void state_import(const device_state_entry &entry); virtual void state_export(const device_state_entry &entry); - void state_string_export(const device_state_entry &entry, astring &string); + void state_string_export(const device_state_entry &entry, astring &str); // device_disasm_interface overrides virtual UINT32 disasm_min_opcode_bytes() const { return 1; } |