From 6b36c7ab225c4619dcb5ac33c34813a66277457e Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sat, 11 Apr 2015 15:26:58 +0200 Subject: cstr() - > c_str() as preparation for move to std::string (nw) --- src/emu/debug/dvstate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/emu/debug/dvstate.c') 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++] = ' '; -- cgit v1.2.3-70-g09d2