diff options
Diffstat (limited to 'src/emu/debug/dvstate.cpp')
-rw-r--r-- | src/emu/debug/dvstate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/dvstate.cpp b/src/emu/debug/dvstate.cpp index 578b423725d..a761a7d0cbb 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()); + strprintf(name,"%s '%s'", state->device().name(), state->device().tag().c_str()); m_source_list.append(*global_alloc(debug_view_state_source(name.c_str(), state->device()))); } |