summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/m6502/m65ce02.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-04-12 16:54:10 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2015-04-12 16:54:10 +0200
commit87f705b984df084f2a6658d838d6b56eee576e13 (patch)
treebee6c295b35db2143b130f1780bdb94a000ba96a /src/emu/cpu/m6502/m65ce02.c
parentf2243d602081b2f5ccf5b1dfe0e9530e30567a2a (diff)
string -> str rename due to future conflicts (nw)
Diffstat (limited to 'src/emu/cpu/m6502/m65ce02.c')
-rw-r--r--src/emu/cpu/m6502/m65ce02.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/cpu/m6502/m65ce02.c b/src/emu/cpu/m6502/m65ce02.c
index 2a1365bc010..cb3bb9a1651 100644
--- a/src/emu/cpu/m6502/m65ce02.c
+++ b/src/emu/cpu/m6502/m65ce02.c
@@ -104,12 +104,12 @@ void m65ce02_device::state_export(const device_state_entry &entry)
{
}
-void m65ce02_device::state_string_export(const device_state_entry &entry, astring &string)
+void m65ce02_device::state_string_export(const device_state_entry &entry, astring &str)
{
switch(entry.index()) {
case STATE_GENFLAGS:
case M6502_P:
- string.printf("%c%c%c%c%c%c%c",
+ str.printf("%c%c%c%c%c%c%c",
P & F_N ? 'N' : '.',
P & F_V ? 'V' : '.',
P & F_E ? 'E' : '.',
@@ -119,7 +119,7 @@ void m65ce02_device::state_string_export(const device_state_entry &entry, astrin
P & F_C ? 'C' : '.');
break;
case M65CE02_B:
- string.printf("%02x", B >> 8);
+ str.printf("%02x", B >> 8);
break;
}
}