diff options
Diffstat (limited to 'src/emu/cpu/apexc/apexc.c')
-rw-r--r-- | src/emu/cpu/apexc/apexc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/apexc/apexc.c b/src/emu/cpu/apexc/apexc.c index 8ec78c15e74..45e7d84eab3 100644 --- a/src/emu/cpu/apexc/apexc.c +++ b/src/emu/cpu/apexc/apexc.c @@ -809,7 +809,7 @@ void apexc_cpu_device::state_string_export(const device_state_entry &entry, astr switch (entry.index()) { case STATE_GENFLAGS: - string.printf("%c", m_running ? "R" : "S" ); + string.printf("%c", m_running ? 'R' : 'S' ); break; } } |