summaryrefslogtreecommitdiffstats
path: root/src/emu/debug/dvstate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/debug/dvstate.cpp')
-rw-r--r--src/emu/debug/dvstate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/dvstate.cpp b/src/emu/debug/dvstate.cpp
index a761a7d0cbb..578b423725d 100644
--- a/src/emu/debug/dvstate.cpp
+++ b/src/emu/debug/dvstate.cpp
@@ -78,7 +78,7 @@ void debug_view_state::enumerate_sources()
std::string name;
for (device_state_interface *state = iter.first(); state != nullptr; state = iter.next())
{
- strprintf(name,"%s '%s'", state->device().name(), state->device().tag().c_str());
+ strprintf(name,"%s '%s'", state->device().name(), state->device().tag());
m_source_list.append(*global_alloc(debug_view_state_source(name.c_str(), state->device())));
}