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/m6800/m6800.c | |
parent | f2243d602081b2f5ccf5b1dfe0e9530e30567a2a (diff) |
string -> str rename due to future conflicts (nw)
Diffstat (limited to 'src/emu/cpu/m6800/m6800.c')
-rw-r--r-- | src/emu/cpu/m6800/m6800.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/m6800/m6800.c b/src/emu/cpu/m6800/m6800.c index c68c3471628..e6d60ed56b8 100644 --- a/src/emu/cpu/m6800/m6800.c +++ b/src/emu/cpu/m6800/m6800.c @@ -1123,12 +1123,12 @@ void m6800_cpu_device::device_start() m_icountptr = &m_icount; } -void m6800_cpu_device::state_string_export(const device_state_entry &entry, astring &string) +void m6800_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", + str.printf("%c%c%c%c%c%c%c%c", m_cc & 0x80 ? '?':'.', m_cc & 0x40 ? '?':'.', m_cc & 0x20 ? 'H':'.', |