summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/adsp2100/adsp2100.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/adsp2100/adsp2100.c
parentf2243d602081b2f5ccf5b1dfe0e9530e30567a2a (diff)
string -> str rename due to future conflicts (nw)
Diffstat (limited to 'src/emu/cpu/adsp2100/adsp2100.c')
-rw-r--r--src/emu/cpu/adsp2100/adsp2100.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/adsp2100/adsp2100.c b/src/emu/cpu/adsp2100/adsp2100.c
index 21bee63ada8..0a521b7898f 100644
--- a/src/emu/cpu/adsp2100/adsp2100.c
+++ b/src/emu/cpu/adsp2100/adsp2100.c
@@ -720,12 +720,12 @@ void adsp21xx_device::state_import(const device_state_entry &entry)
// for the debugger
//-------------------------------------------------
-void adsp21xx_device::state_string_export(const device_state_entry &entry, astring &string)
+void adsp21xx_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_astat & 0x80 ? 'X':'.',
m_astat & 0x40 ? 'M':'.',
m_astat & 0x20 ? 'Q':'.',