summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/dvstate.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-04-11 15:26:58 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2015-04-11 15:26:58 +0200
commit6b36c7ab225c4619dcb5ac33c34813a66277457e (patch)
tree51fe970d770cd4ad794b6aa428560f020f0f0fd6 /src/emu/debug/dvstate.c
parentc334fda9a9da652bcac871f3b778ba4ca967031c (diff)
cstr() - > c_str() as preparation for move to std::string (nw)
Diffstat (limited to 'src/emu/debug/dvstate.c')
-rw-r--r--src/emu/debug/dvstate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/debug/dvstate.c b/src/emu/debug/dvstate.c
index ba26d8bbfe4..77afdcc43cf 100644
--- a/src/emu/debug/dvstate.c
+++ b/src/emu/debug/dvstate.c
@@ -291,13 +291,13 @@ void debug_view_state::view_update()
len += m_divider - 1 - curitem->m_symbol.len();
}
- memcpy(&temp[len], curitem->m_symbol.cstr(), curitem->m_symbol.len());
+ memcpy(&temp[len], curitem->m_symbol.c_str(), curitem->m_symbol.len());
len += curitem->m_symbol.len();
temp[len++] = ' ';
temp[len++] = ' ';
- memcpy(&temp[len], valstr.cstr(), curitem->m_vallen);
+ memcpy(&temp[len], valstr.c_str(), curitem->m_vallen);
len += curitem->m_vallen;
temp[len++] = ' ';